add comments of why __ISO_C_VISIBLE=1999 is needed #296
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: leafo/gh-actions-lua@v9 | |
with: | |
luaVersion: "5.4" | |
- name: Build | |
run: | | |
make all-via-docker | |
- name: Install ckb-debugger | |
run: | | |
wget 'https://github.com/nervosnetwork/ckb-standalone-debugger/releases/download/v0.107.0/ckb-debugger-linux-x64.tar.gz' | |
tar zxvf ckb-debugger-linux-x64.tar.gz | |
chmod +x ckb-debugger | |
cp ckb-debugger ~/.cargo/bin | |
ckb-debugger --version | |
- name: Run cases | |
run: | | |
cd tests/official && make ci | |
cd ../test_cases && make ci | |
cd ../ckb-c-stdlib-tests && make all-via-docker && make ci |