Skip to content

Commit da09f30

Browse files
authored
chore: Update Rust dependencies (#96)
* chore: Update Rust dependencies We can not bump OTEL stuff, as it's giga breaking * clippy --fix * Fixup Rust version in CI * Markdown linter * linter doing linter things
1 parent cea7e7f commit da09f30

File tree

11 files changed

+343
-354
lines changed

11 files changed

+343
-354
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66

77
env:
8-
RUST_TOOLCHAIN_VERSION: "1.87.0"
8+
RUST_TOOLCHAIN_VERSION: "1.91.1"
99
RUSTFLAGS: "-D warnings"
1010
RUSTDOCFLAGS: "-D warnings"
1111
CARGO_TERM_COLOR: always

.github/workflows/pr_pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
CARGO_TERM_COLOR: always
9-
RUST_TOOLCHAIN_VERSION: "1.87.0"
9+
RUST_TOOLCHAIN_VERSION: "1.91.1"
1010
HADOLINT_VERSION: "v2.12.0"
1111

1212
jobs:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
tags: ['v[0-9]+.[0-9]+.[0-9]+']
55

66
env:
7-
RUST_TOOLCHAIN_VERSION: "1.87.0"
7+
RUST_TOOLCHAIN_VERSION: "1.91.1"
88
RUSTFLAGS: "-D warnings"
99
RUSTDOCFLAGS: "-D warnings"
1010
CARGO_TERM_COLOR: always

CONTRIBUTING.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Contributor guide
2+
3+
## Build docker image
4+
5+
```bash
6+
docker build . -f docker/Dockerfile -t foo:bar
7+
```
8+
9+
## Test docker image
10+
11+
Update `tests/test-definition.yaml` by setting the `trino-lb` dimension to `foo:bar`.
12+
13+
Afterwards load the image into kind
14+
15+
```bash
16+
kind load docker-image foo:bar
17+
```
18+
19+
Last but not least run
20+
21+
```bash
22+
./scripts/run_tests.sh
23+
```

0 commit comments

Comments
 (0)