Skip to content

Commit

Permalink
chore: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xlassix committed Aug 30, 2024
1 parent e854348 commit fe72eb2
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,23 @@ jobs:
override: true
components: rustfmt, clippy

- name: Clone and setup Rooch
- name: Download rooch
run: |
wget https://github.com/rooch-network/rooch/releases/latest/download/rooch-ubuntu-latest.zip
echo "Download completed"
- name: Install Rooch
run: |
unzip rooch-ubuntu-latest.zip
sudo cp rooch-artifacts/rooch /usr/local/bin
rooch --version
echo "Installation completed"
- name: Run rooch test
run: |
apt install git curl cmake make gcc pkg-config libssl-dev libsqlite3-dev g++
git clone https://github.com/rooch-network/rooch.git _rooch
cd _rooch
cargo build
cp target/debug/rooch ~/.cargo/bin/
cd rooch
rooch move test
- name: Use Node.js ${{ matrix.node-version }} 🛎️
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit fe72eb2

Please sign in to comment.