2021-05-31 20:21:17 +00:00
|
|
|
name: CI
|
2021-07-13 08:26:49 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
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
|
2024-07-10 12:24:12 +00:00
|
|
|
branch: [version-1-6, version-2-0]
|
2020-12-23 00:12:02 +00:00
|
|
|
include:
|
|
|
|
- target:
|
|
|
|
os: linux
|
2024-07-11 08:22:16 +00:00
|
|
|
builder: ubuntu-22.04
|
2022-01-10 11:29:52 +00:00
|
|
|
shell: bash
|
2020-12-23 00:12:02 +00:00
|
|
|
- target:
|
|
|
|
os: macos
|
2024-07-11 08:22:16 +00:00
|
|
|
builder: macos-13
|
2022-01-10 11:29:52 +00:00
|
|
|
shell: bash
|
2020-12-23 00:12:02 +00:00
|
|
|
- target:
|
|
|
|
os: windows
|
2024-07-11 08:22:16 +00:00
|
|
|
builder: windows-2022
|
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
|
2024-08-01 10:54:18 +00:00
|
|
|
# Using nim.branch as a simple way to differentiate between nimble using the "pkgs" or "pkgs2" directories.
|
|
|
|
# The change happened on Nimble v0.14.0.
|
|
|
|
key: nimbledeps-${{ matrix.branch }}-${{ hashFiles('.pinned') }} # hashFiles returns a different value on windows
|
2022-11-21 15:56:04 +00:00
|
|
|
|
|
|
|
- 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
|
2024-06-11 15:18:06 +00:00
|
|
|
|
|
|
|
lint:
|
|
|
|
name: "Lint"
|
2020-12-23 00:12:02 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-06-11 15:18:06 +00:00
|
|
|
steps:
|
2022-01-10 11:29:52 +00:00
|
|
|
- name: Checkout
|
2020-12-23 00:12:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-06-11 15:18:06 +00:00
|
|
|
with:
|
2022-11-21 15:56:04 +00:00
|
|
|
fetch-depth: 2 # In PR, has extra merge commit: ^1 = PR, ^2 = base
|
2024-06-11 15:18:06 +00:00
|
|
|
|
2022-11-21 15:56:04 +00:00
|
|
|
- name: Check nph formatting
|
2022-01-10 11:29:52 +00:00
|
|
|
# Pin nph to a specific version to avoid sudden style differences.
|
2021-09-08 14:58:44 +00:00
|
|
|
# Updating nph version should be accompanied with running the new
|
2024-06-11 15:18:06 +00:00
|
|
|
# version on the fluffy directory.
|
|
|
|
run: |
|
|
|
|
VERSION="v0.5.1"
|
|
|
|
ARCHIVE="nph-linux_x64.tar.gz"
|
2022-11-21 15:56:04 +00:00
|
|
|
curl -L "https://github.com/arnetheduck/nph/releases/download/${VERSION}/${ARCHIVE}" -o ${ARCHIVE}
|
2024-06-11 15:18:06 +00:00
|
|
|
tar -xzf ${ARCHIVE}
|
|
|
|
shopt -s extglob # Enable extended globbing
|
|
|
|
./nph examples libp2p tests tools *.@(nim|nims|nimble)
|
|
|
|
git diff --exit-code
|