Skip to content

Commit

Permalink
fix: steps in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
3benbox committed Jan 30, 2024
1 parent 3a606f0 commit 550d0d8
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/rust-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,15 @@ jobs:
env:
RUST_CERAMIC_IMAGE: ${{ needs.build.outputs.build_tag }}
run: |
sudo apt-get update && apt-get install -y curl yq
curl -LO https://github.com/3box/ceramic-tests/releases/download/v0.2.0/hermetic-driver-x86_64-linux
mv hermetic-driver-x86_64-linux ./bin/hermetic-driver
mkdir ./bin
sudo apt-get update && sudo apt-get install -y curl
curl -L https://github.com/mikefarah/yq/releases/download/v4.40.5/yq_linux_amd64 -o ./bin/yq
chmod +x ./bin/yq
curl -L https://github.com/3box/ceramic-tests/releases/download/v0.2.0/hermetic-driver-x86_64-linux -o ./bin/hermetic-driver
chmod +x ./bin/hermetic-driver
curl -LO https://raw.githubusercontent.com/3box/ceramic-tests/main/networks/basic-rust.yaml
yq e '.spec.ceramic[0].ipfs.rust.image = strenv(RUST_CERAMIC_IMAGE)' basic-rust.yaml
cat basic-rust.yaml
curl -L https://raw.githubusercontent.com/3box/ceramic-tests/main/networks/basic-rust.yaml
./bin/yq -i '.spec.ceramic[0].ipfs.rust.image = strenv(RUST_CERAMIC_IMAGE)' basic-rust.yaml
./bin/yq basic-rust.yaml
-
name: Setup GKE auth
uses: 'google-github-actions/auth@v1'
Expand Down

0 comments on commit 550d0d8

Please sign in to comment.