nim-libp2p/.github/workflows/multi_nim.yml

83 lines
2.0 KiB
YAML
Raw Normal View History

name: Daily
on:
schedule:
- cron: "30 6 * * *"
workflow_dispatch:
jobs:
2022-11-21 15:56:04 +00:00
delete-cache:
runs-on: ubuntu-latest
steps:
- uses: snnaplab/delete-branch-cache-action@v1
build:
2022-11-21 15:56:04 +00:00
needs: delete-cache
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
target:
- os: linux
cpu: amd64
- os: linux
cpu: i386
- os: macos
cpu: amd64
- os: windows
cpu: amd64
#- os: windows
#cpu: i386
2022-10-29 21:26:44 +00:00
branch: [version-1-2, version-1-6, devel]
include:
- target:
os: linux
builder: ubuntu-20.04
shell: bash
- target:
os: macos
2022-07-22 19:39:06 +00:00
builder: macos-12
shell: bash
- target:
os: windows
builder: windows-2019
shell: msys2 {0}
defaults:
run:
shell: ${{ matrix.shell }}
name: '${{ matrix.target.os }}-${{ matrix.target.cpu }} (Nim ${{ matrix.branch }})'
runs-on: ${{ matrix.builder }}
2022-11-16 15:56:02 +00:00
continue-on-error: ${{ matrix.branch == 'devel' }}
steps:
- name: Checkout
uses: actions/checkout@v2
2022-11-21 15:56:04 +00:00
- name: Setup Nim
uses: "./.github/actions/install_nim"
with:
2022-11-21 15:56:04 +00:00
os: ${{ matrix.target.os }}
shell: ${{ matrix.shell }}
nim_branch: ${{ matrix.branch }}
cpu: ${{ matrix.target.cpu }}
- name: Setup Go
uses: actions/setup-go@v2
with:
2022-04-05 11:12:55 +00:00
go-version: '~1.15.5'
- name: Install p2pd
run: |
V=1 bash scripts/build_p2pd.sh p2pdCache 124530a3
- name: Run tests
run: |
nim --version
nimble --version
nimble install -y --depsOnly
2022-11-16 15:56:02 +00:00
NIMFLAGS="${NIMFLAGS} --gc:refc" nimble test
if [[ "${{ matrix.branch }}" == "devel" ]]; then
echo -e "\nTesting with '--gc:orc':\n"
2022-11-16 15:56:02 +00:00
NIMFLAGS="${NIMFLAGS} --gc:orc" nimble test
fi