Bump get-func-name from 2.0.0 to 2.0.2 (#136) #643
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: Debugger Plugin CI | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
env: | |
WDCLI_CACHE: "build-wdcli" | |
WABT_CACHE: "build-wabt" | |
jobs: | |
formatting-check: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
node-version: 16 | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint | |
build-wdcli: | |
name: Build WARDuino CLI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Retrieve version | |
run: | | |
cd WARDuino | |
echo "COMMIT=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
id: version | |
- name: Cache build files | |
id: cache-wdcli | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./WARDuino/build-emu | |
key: ${{ env.WDCLI_CACHE }}-${{ steps.version.outputs.COMMIT }} | |
- name: Build from source | |
if: steps.cache-wdcli.outputs.cache-hit != 'true' | |
run: | | |
cd WARDuino; mkdir build-emu; cd build-emu | |
cmake .. -D BUILD_EMULATOR=ON | |
make | |
- name: Verify version | |
if: steps.cache-wdcli.outputs.cache-hit != 'true' | |
run: ./WARDuino/build-emu/wdcli --help | |
build-wabt: | |
name: Build custom WABT | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Retrieve version | |
run: | | |
cd WABT | |
echo "COMMIT=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
id: version | |
- name: Cache build files | |
id: cache-wabt | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./WABT/build | |
key: ${{ env.WABT_CACHE }}-${{ steps.version.outputs.COMMIT }} | |
- name: Build from source | |
if: steps.cache-wabt.outputs.cache-hit != 'true' | |
run: | | |
cd WABT; mkdir build; cd build | |
cmake .. | |
cmake --build . | |
- name: Verify version | |
if: steps.cache-wabt.outputs.cache-hit != 'true' | |
run: ./WABT/build/wasm-objdump --version | |
test-debugger: | |
name: Debugger Test Suite | |
needs: [build-wabt, build-wdcli] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Retrieve WABT version | |
run: | | |
cd WABT | |
echo "::set-output name=COMMIT::$(git rev-parse HEAD)" | |
id: wabt | |
- name: Get WABT cache | |
id: cache-wabt | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./WABT/build | |
key: ${{ env.WABT_CACHE }}-${{ steps.wabt.outputs.COMMIT }} | |
- name: Update $PATH | |
run: echo "${GITHUB_WORKSPACE}/WABT/build" >> $GITHUB_PATH | |
- name: Check wat2wasm | |
run: wat2wasm --version | |
- name: Check wasm-objdump | |
run: wasm-objdump --version | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
node-version: 16 | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Retrieve WARDuino version | |
run: | | |
cd WARDuino | |
echo "::set-output name=COMMIT::$(git rev-parse HEAD)" | |
id: warduino | |
- name: Get WARDuino cache | |
id: cache-wdcli | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./WARDuino/build-emu | |
key: ${{ env.WDCLI_CACHE }}-${{ steps.warduino.outputs.COMMIT }} | |
- name: Move wdcli | |
run: | | |
mkdir -p $HOME/Arduino/libraries/WARDuino/build-emu/ | |
cp ./WARDuino/build-emu/wdcli $HOME/Arduino/libraries/WARDuino/build-emu/ | |
- name: Run tests | |
run: npm run pretest | |
test-ui: | |
name: Plugin UI Test Suite | |
needs: [build-wabt, build-wdcli] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Retrieve WABT version | |
run: | | |
cd WABT | |
echo "::set-output name=COMMIT::$(git rev-parse HEAD)" | |
id: wabt | |
- name: Get WABT cache | |
id: cache-wabt | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./WABT/build | |
key: ${{ env.WABT_CACHE }}-${{ steps.wabt.outputs.COMMIT }} | |
- name: Update $PATH | |
run: echo "${GITHUB_WORKSPACE}/WABT/build" >> $GITHUB_PATH | |
- name: Check wat2wasm | |
run: wat2wasm --version | |
- name: Check wasm-objdump | |
run: wasm-objdump --version | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
node-version: 16 | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Retrieve WARDuino version | |
run: | | |
cd WARDuino | |
echo "::set-output name=COMMIT::$(git rev-parse HEAD)" | |
id: warduino | |
- name: Get WARDuino cache | |
id: cache-wdcli | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./WARDuino/build-emu | |
key: ${{ env.WDCLI_CACHE }}-${{ steps.warduino.outputs.COMMIT }} | |
- name: Move wdcli | |
run: | | |
mkdir -p $HOME/Arduino/libraries/WARDuino/build-emu/ | |
cp ./WARDuino/build-emu/wdcli $HOME/Arduino/libraries/WARDuino/build-emu/ | |
- name: Run tests | |
run: npm run pretest; xvfb-run -a npm run plugintest | |