Skip to content

Commit

Permalink
Merge pull request #33 from t4lz/dont-build-tests
Browse files Browse the repository at this point in the history
Don't build mirrord tests package
  • Loading branch information
t4lz authored Feb 13, 2024
2 parents 81337c8 + da9c3e4 commit 4b295a9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions e2e-setup-action/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ runs:
- run: | # Build Go test apps.
./scripts/build_go_apps.sh 21
shell: bash
- run: | # Build Rust test apps.
for cargo_dir in $(find tests -name Cargo.toml -printf '%h\n'); do
- name: Build Rust test apps
run: |
for cargo_dir in $(find tests/*/* -name Cargo.toml -printf '%h\n'); do
echo "Building test app in: $cargo_dir"
pushd "$cargo_dir"
cargo build
Expand All @@ -77,4 +78,4 @@ runs:
with:
container-runtime: ${{ inputs.container-runtime }}
cpus: 'max'
memory: 'max'
memory: '4gb'

0 comments on commit 4b295a9

Please sign in to comment.