2021-05-31 20:21:17 +00:00
|
|
|
name: CI
|
2021-07-13 08:26:49 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-08-03 17:43:00 +00:00
|
|
|
- unstable
|
2021-07-13 08:26:49 +00:00
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
2020-12-23 00:12:02 +00:00
|
|
|
|
2022-11-21 15:56:04 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-12-23 00:12:02 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-01-10 11:29:52 +00:00
|
|
|
timeout-minutes: 90
|
2020-12-23 00:12:02 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- os: linux
|
|
|
|
cpu: amd64
|
|
|
|
- os: linux
|
|
|
|
cpu: i386
|
|
|
|
- os: macos
|
|
|
|
cpu: amd64
|
|
|
|
- os: windows
|
|
|
|
cpu: amd64
|
2022-01-10 11:29:52 +00:00
|
|
|
#- os: windows
|
|
|
|
#cpu: i386
|
2022-08-02 17:07:08 +00:00
|
|
|
branch: [version-1-2, version-1-6]
|
2020-12-23 00:12:02 +00:00
|
|
|
include:
|
|
|
|
- target:
|
|
|
|
os: linux
|
2021-03-15 05:50:36 +00:00
|
|
|
builder: ubuntu-20.04
|
2022-01-10 11:29:52 +00:00
|
|
|
shell: bash
|
2020-12-23 00:12:02 +00:00
|
|
|
- target:
|
|
|
|
os: macos
|
2022-07-22 19:39:06 +00:00
|
|
|
builder: macos-12
|
2022-01-10 11:29:52 +00:00
|
|
|
shell: bash
|
2020-12-23 00:12:02 +00:00
|
|
|
- target:
|
|
|
|
os: windows
|
|
|
|
builder: windows-2019
|
2022-01-10 11:29:52 +00:00
|
|
|
shell: msys2 {0}
|
2021-05-31 20:21:17 +00:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
2022-01-10 11:29:52 +00:00
|
|
|
shell: ${{ matrix.shell }}
|
2021-05-31 20:21:17 +00:00
|
|
|
|
2022-01-10 11:29:52 +00:00
|
|
|
name: '${{ matrix.target.os }}-${{ matrix.target.cpu }} (Nim ${{ matrix.branch }})'
|
2020-12-23 00:12:02 +00:00
|
|
|
runs-on: ${{ matrix.builder }}
|
2022-11-21 15:56:04 +00:00
|
|
|
continue-on-error: ${{ matrix.branch == 'devel' }}
|
2020-12-23 00:12:02 +00:00
|
|
|
steps:
|
2022-01-10 11:29:52 +00:00
|
|
|
- name: Checkout
|
2020-12-23 00:12:02 +00:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
2021-05-21 16:27:01 +00:00
|
|
|
|
2022-11-21 15:56:04 +00:00
|
|
|
- name: Setup Nim
|
|
|
|
uses: "./.github/actions/install_nim"
|
2022-01-10 11:29:52 +00:00
|
|
|
with:
|
2022-11-21 15:56:04 +00:00
|
|
|
os: ${{ matrix.target.os }}
|
|
|
|
cpu: ${{ matrix.target.cpu }}
|
|
|
|
shell: ${{ matrix.shell }}
|
|
|
|
nim_branch: ${{ matrix.branch }}
|
2020-12-23 00:12:02 +00:00
|
|
|
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2022-04-05 11:12:55 +00:00
|
|
|
go-version: '~1.15.5'
|
2020-12-23 00:12:02 +00:00
|
|
|
|
|
|
|
- name: Install p2pd
|
|
|
|
run: |
|
2021-09-08 14:58:44 +00:00
|
|
|
V=1 bash scripts/build_p2pd.sh p2pdCache 124530a3
|
2020-12-23 00:12:02 +00:00
|
|
|
|
2022-11-21 15:56:04 +00:00
|
|
|
- name: Restore deps from cache
|
|
|
|
id: deps-cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: nimbledeps
|
|
|
|
key: nimbledeps-${{ hashFiles('.pinned') }}
|
|
|
|
|
|
|
|
- name: Install deps
|
|
|
|
if: ${{ steps.deps-cache.outputs.cache-hit != 'true' }}
|
|
|
|
run: |
|
|
|
|
nimble install_pinned
|
|
|
|
|
2022-01-10 11:29:52 +00:00
|
|
|
- name: Run tests
|
2020-12-23 00:12:02 +00:00
|
|
|
run: |
|
2022-01-10 11:29:52 +00:00
|
|
|
nim --version
|
|
|
|
nimble --version
|
2020-12-23 00:12:02 +00:00
|
|
|
nimble test
|