Merge pull request #231 from mongodb/development

Fixed CI runner failure when executing tests
This commit is contained in:
Mick Grove 2026-02-13 07:55:59 -08:00 committed by GitHub
commit 368ba8e288
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 6 deletions

View file

@ -53,8 +53,6 @@ jobs:
- name: Build (Makefile linux-x64)
run: make linux-x64
env:
CARGO_BUILD_JOBS: 1
- name: Fix permissions
run: sudo chown -R $(id -u):$(id -g) target
@ -122,8 +120,6 @@ jobs:
- name: Build (Makefile linux-arm64)
run: make linux-arm64
env:
CARGO_BUILD_JOBS: 1
- name: Fix permissions
run: sudo chown -R $(id -u):$(id -g) target

View file

@ -259,7 +259,7 @@ linux-x64: check-docker create-dockerignore
patch perl ragel \
git openssl-dev curl && \
\
cargo test --workspace --all-targets -- --test-threads=1 ; \
cargo test --workspace --all-targets ; \
\
rustup target add x86_64-unknown-linux-musl && \
\
@ -290,7 +290,7 @@ linux-arm64: check-docker create-dockerignore
\
rustup target add aarch64-unknown-linux-musl && \
\
cargo test --workspace --all-targets -- --test-threads=1 ; \
cargo test --workspace --all-targets ; \
\
export PKG_CONFIG_ALLOW_CROSS=1 ; \
export RUSTFLAGS="-C target-feature=+crt-static" ; \