123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- name: test
- on:
- push:
- pull_request:
- jobs:
- skip:
- runs-on: ubuntu-latest
- steps:
- - run: echo "Skip job"
- before:
- runs-on: ubuntu-latest
- if: "! contains(github.event.head_commit.message, '[skip ci]')"
- steps:
- - run: echo "not contains '[skip ci]'"
- build:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os:
- - ubuntu-latest
- #- windows-latest
- #- macOS-latest
- nim_version:
- - '1.2.0'
- - 'stable'
- needs: before
- env:
- TIMEOUT_EXIT_STATUS: 124
- steps:
- - uses: actions/checkout@v1
- - name: Cache choosenim
- id: cache-choosenim
- uses: actions/cache@v1
- with:
- path: ~/.choosenim
- key: ${{ runner.os }}-choosenim-${{ matrix.nim_version }}
- - name: Cache nimble
- id: cache-nimble
- uses: actions/cache@v1
- with:
- path: ~/.nimble
- key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }}
- - uses: jiro4989/setup-nim-action@v1.0.2
- with:
- nim-version: ${{ matrix.nim_version }}
- - name: Fix apt packages
- run: |
- # see. https://github.com/actions/virtual-environments/issues/675
- sudo sed -i 's/azure\.//' /etc/apt/sources.list
- sudo apt update -yqq
- - name: Build tests
- run: |
- cd tests
- for file in $(ls -v test*); do
- cd $file
- echo "test: $file"
- nim c -d:ssl main.nim
- cd ../
- done
- shell: bash
|