You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: Setup devcontainers for building aws-lc-sys
This needs a few environment variables and debian packages installed to facilitate building that package. This includes the env vars in the `just-cargo` invocation, and the packages in the rust, rust-musl, and devcontainer images.
* fix: Remove CFLAGS from just-cargo
* v48
- Update dependabot to properly scan the dev Dockerfile weekly
- Add syft, grype, oras, and cosign to the tools iamge
- Update various dependencies to be managed as OCI dependencies (for dependabot
management)
- Update other dependencies, including Go (to 1.25) and Rust (to 1.90)
- setup-tools action:
- Hack mandb to avoid slowness during apt installs in GitHub Actions
- Unpack the tools binaries without doing a full docker buildx setup
RUN url="https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" ; \
148
-
scurl "$url" | tar xJvf - --strip-components=1 -C /usr/local/bin "shellcheck-${SHELLCHECK_VERSION}/shellcheck"
RUN url="https://github.com/EmbarkStudios/cargo-deny/releases/download/${CARGO_DENY_VERSION}/cargo-deny-${CARGO_DENY_VERSION}-x86_64-unknown-linux-musl.tar.gz" ; \
191
168
scurl "$url" | tar zvxf - --strip-components=1 -C /usr/local/bin "cargo-deny-${CARGO_DENY_VERSION}-x86_64-unknown-linux-musl/cargo-deny"
RUN url="https://github.com/nextest-rs/nextest/releases/download/cargo-nextest-${NEXTEST_VERSION}/cargo-nextest-${NEXTEST_VERSION}-x86_64-unknown-linux-gnu.tar.gz" ; \
197
174
scurl "$url" | tar zvxf - -C /usr/local/bin cargo-nextest
198
175
@@ -248,7 +225,7 @@ FROM docker.io/library/golang:${GO_TAG} as gotests
248
225
RUN go install github.com/cweill/gotests/gotests@latest
249
226
250
227
FROM docker.io/library/golang:${GO_TAG} as gotestsum
0 commit comments