Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ jobs:
uses: DeterminateSystems/determinate-nix-action@main
- name: "Use nix cache"
uses: DeterminateSystems/magic-nix-cache-action@main
- name: "Add nginxWithStream to PATH"
- name: "Set NGINX_EXE for integration tests"
run: |
# This is necessary for ohttp-relay integration tests
echo "$(nix build .#nginx-with-stream --print-out-paths --no-link)/bin" >> $GITHUB_PATH
echo "NGINX_EXE=$(nix build .#nginx-with-stream --print-out-paths --no-link)/bin/nginx" >> $GITHUB_ENV
- name: "Use cache"
uses: Swatinem/rust-cache@v2
- name: Run tests
Expand Down Expand Up @@ -91,10 +90,9 @@ jobs:
uses: DeterminateSystems/determinate-nix-action@main
- name: "Use nix cache"
uses: DeterminateSystems/magic-nix-cache-action@main
- name: "Add nginxWithStream to PATH"
- name: "Set NGINX_EXE for integration tests"
run: |
# This is necessary for ohttp-relay integration tests
echo "$(nix build .#nginx-with-stream --print-out-paths --no-link)/bin" >> $GITHUB_PATH
echo "NGINX_EXE=$(nix build .#nginx-with-stream --print-out-paths --no-link)/bin/nginx" >> $GITHUB_ENV
- name: "Use cache"
uses: Swatinem/rust-cache@v2
- name: "Install cargo-llvm-cov"
Expand Down
Loading