Skip to content

uname -m

uname -m #81

Workflow file for this run

---
name: test
# yamllint disable-line rule:truthy
on:
- push
- pull_request
jobs:
before:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[skip ci]')"
steps:
- run: echo "commit message doesn't contain '[skip ci]'"
test:
needs: before
runs-on: ubuntu-latest
strategy:
matrix:
nim-version:
- '1.4.8'
- '1.6.16'
- '2.0.0'
- 'devel'
steps:
- uses: actions/checkout@v1
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-version }}
- run: nimble install -y
- run: nimble test
- run: nimble checkExamples
i386:
needs: before
runs-on: ubuntu-latest
container:
image: i386/ubuntu:bionic
strategy:
matrix:
nim-version:
- '1.4.8'
- '1.6.16'
- '2.0.0'
- 'devel'
steps:
- uses: actions/checkout@v1
- run: |
apt update --help
apt install --help
apt-get update -y
apt-get install -y curl nodejs
- name: Install Nim
run: |
uname -m
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
CHOOSENIM_NO_ANALYTICS=1 CHOOSENIM_CHOOSE_VERSION=${{ matrix.nim-version }} sh init.sh -y
- run: nimble install -y
- run: nimble test
- run: nimble checkExamples