Skip to content

Commit

Permalink
Merge branch 'main' into ls/clippy-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuacolvin0 authored Dec 10, 2024
2 parents 42acf69 + 31bc4ea commit 4a5f629
Show file tree
Hide file tree
Showing 19 changed files with 772 additions and 343 deletions.
9 changes: 8 additions & 1 deletion .ci/build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,11 @@ if [ "$CFG_RELEASE_CHANNEL" == "nightly" ]; then
else
cargo build --locked
fi
cargo test

cargo test

if [ "$(uname -s)" != "Darwin" ]; then
# The MacOS CI doesn't support Docker because of licensing issues, so only run them on Linux.
# Also, run the docker tests on a single thread to avoid concurrency issues.
cargo test -F docker-test -- --test-threads 1 docker
fi
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
./target
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: install rustup
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
sh rustup-init.sh -y --default-toolchain none
sh rustup-init.sh -y --default-toolchain ${{ matrix.cfg_release_channel }}
rustup target add ${{ matrix.target }}
- name: Build and Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: install rustup
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
sh rustup-init.sh -y --default-toolchain none
sh rustup-init.sh -y --default-toolchain ${{ matrix.cfg_release_channel }}
rustup target add ${{ matrix.target }}
- name: Build and Test
Expand Down
Loading

0 comments on commit 4a5f629

Please sign in to comment.