Display error if stubs not compiled #51
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 | |
jobs: | |
Test: | |
if: | | |
!contains(github.event.head_commit.message, '[skip ci]') | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
nim-channel: [stable, devel] | |
name: ${{ matrix.os }}-${{ matrix.nim-channel }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup nim | |
uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: ${{ matrix.nim-channel }} | |
- name: Test | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-multilib # Support for 32bits | |
clang --version | |
# For some reason wasm-ld is not in PATH, so add it. llvm version should probably match that of clang | |
export PATH=$PATH:/usr/lib/llvm-11/bin | |
nim --version | |
nimble install -dy | |
nimble test |