File tree 1 file changed +13
-7
lines changed
1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -29,17 +29,23 @@ jobs:
29
29
override : true
30
30
components : rustfmt, clippy
31
31
32
- - name : Clone and setup Rooch
32
+ - name : Download rooch
33
+ run : |
34
+ wget https://github.com/rooch-network/rooch/releases/latest/download/rooch-ubuntu-latest.zip
35
+ echo "Download completed"
36
+
37
+ - name : Install Rooch
38
+ run : |
39
+ unzip rooch-ubuntu-latest.zip
40
+ sudo cp rooch-artifacts/rooch /usr/local/bin
41
+ rooch --version
42
+ echo "Installation completed"
43
+
44
+ - name : Run rooch test
33
45
run : |
34
- apt install git curl cmake make gcc pkg-config libssl-dev libsqlite3-dev g++
35
- git clone https://github.com/rooch-network/rooch.git _rooch
36
- cd _rooch
37
- cargo build
38
- cp target/debug/rooch ~/.cargo/bin/
39
46
cd rooch
40
47
rooch move test
41
48
42
-
43
49
- name : Use Node.js ${{ matrix.node-version }} 🛎️
44
50
uses : actions/checkout@v3
45
51
with :
You can’t perform that action at this time.
0 commit comments