Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Jan 20, 2024
1 parent 885120b commit 7cb2520
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ jobs:
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y libssl-dev pkg-config jq && \
cargo install cargo-make && \
wget https://download.dfinity.systems/ic/69e1408347723dbaa7a6cd2faa9b65c42abbe861/openssl-static-binaries/x86_64-linux/pocket-ic.gz && \
gzip -d pocket-ic.gz && \
chmod +x pocket-ic && \
mv pocket-ic ./integration-tests/pocket-ic
wget -O /tmp/cargo-make.zip https://github.com/sagiegurari/cargo-make/releases/download/0.37.5/cargo-make-v0.37.5-x86_64-unknown-linux-gnu.zip &&
sudo unzip /tmp/cargo-make.zip -d /tmp &&
sudo mv /tmp/cargo-make-v0.37.5-x86_64-unknown-linux-gnu/cargo-make $HOME/.cargo/bin/cargo-make &&
sudo chmod +x $HOME/.cargo/bin/cargo-make
- name: Install dfx
run: echo y | sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
- uses: actions-rs/toolchain@v1
Expand All @@ -35,10 +34,6 @@ jobs:
target: wasm32-unknown-unknown
- name: Unit Tests
run: cargo make test
- name: Deploy local
run: cargo make deploy-local
- name: Integration Tests
run: cargo make integration-tests
- name: Format
run: cargo make check-format
- name: Lint
Expand Down

0 comments on commit 7cb2520

Please sign in to comment.