Skip to content

Commit

Permalink
Make volta install slightly more manual
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanrainer committed Jul 14, 2024
1 parent 6d2c04f commit 0a5aa17
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,11 @@ jobs:
uses: addnab/docker-run-action@v3
with:
image: ${{ matrix.compile_target.container }}
options: -v ${{ github.workspace }}:/build -w /build
options: -v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }}
run: |
curl https://get.volta.sh | bash
curl https://get.volta.sh -o install_volta.sh
chmod +x install_volta.sh
./install_volta.sh
export VOLTA_HOME=$HOME/.volta
export PATH=$HOME/.volta:$PATH
./${{ matrix.testing_target.binary_under_test }}/xtask smoke --binary-path ./${{ matrix.testing_target.binary_under_test }}/rover --federation-version "${{ matrix.composition-version }}" --router-version "${{ matrix.router-version }}"
Expand Down

0 comments on commit 0a5aa17

Please sign in to comment.