forked from hyperledger-solang/solang
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (52 loc) · 1.55 KB
/
stylus.yml
File metadata and controls
65 lines (52 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Stylus
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
llvm.16/
nitro-devnode/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Maybe enable verbose logging
if: ${{ runner.debug == 1 }}
run: echo 'VERBOSE=1' >> "$GITHUB_ENV"
- name: Setup
run: |
if ! cargo stylus --version; then
cargo install cargo-stylus
fi
if ! cast --version; then
cargo install cast --git https://github.com/foundry-rs/foundry.git --profile release --locked
fi
if [ ! -d 'nitro-devnode' ]; then
git clone https://github.com/OffchainLabs/nitro-devnode.git
fi
if [ ! -d 'llvm16.0' ]; then
wget https://github.com/hyperledger-solang/solang-llvm/releases/download/llvm16-0/llvm16.0-linux-x86-64.tar.xz
tar Jxf llvm16.0-linux-x86-64.tar.xz
fi
echo "$(pwd)/llvm16.0/bin" >> "$GITHUB_PATH"
- name: Test
run: |
nitro-devnode/run-dev-node.sh &
cargo test --test stylus -- --nocapture