2023-11-10 07:32:35 +00:00
|
|
|
name: CI - Test
|
2021-07-13 08:26:49 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-11-03 05:41:32 +00:00
|
|
|
# - master
|
|
|
|
# - unstable
|
|
|
|
- 'fix/ci-workflow-stability'
|
|
|
|
#pull_request:
|
2021-07-13 08:26:49 +00:00
|
|
|
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:
|
2023-11-03 05:41:32 +00:00
|
|
|
delete-cache:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: snnaplab/delete-branch-cache-action@v1
|
|
|
|
|
2020-12-23 00:12:02 +00:00
|
|
|
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
|
2023-11-16 12:39:15 +00:00
|
|
|
branch: [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
|
2023-11-03 05:41:32 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-12-23 00:12:02 +00:00
|
|
|
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
|
|
|
|
2023-11-17 06:25:47 +00:00
|
|
|
# - name: Setup Go
|
|
|
|
# uses: actions/setup-go@v4
|
|
|
|
# with:
|
|
|
|
# go-version: '~1.15.5'
|
|
|
|
# cache: false
|
|
|
|
#
|
|
|
|
# - name: Install p2pd
|
|
|
|
# run: |
|
|
|
|
# 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: Install deps
|
|
|
|
run: |
|
2023-11-16 13:01:56 +00:00
|
|
|
nimble install -y --depsOnly
|
2022-11-21 15:56:04 +00:00
|
|
|
|
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
|
2023-11-17 09:06:26 +00:00
|
|
|
ls -la ${HOME}/.nimble/pkgs2
|
2023-11-17 06:25:47 +00:00
|
|
|
#NIMFLAGS="${NIMFLAGS} --mm:refc --verbosity:3" nimble test
|
2023-11-03 05:41:32 +00:00
|
|
|
|