forked from mirrors/kingfisher
Merge pull request #231 from mongodb/development
Fixed CI runner failure when executing tests
This commit is contained in:
commit
368ba8e288
2 changed files with 2 additions and 6 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -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" ; \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue