Skip to content

chore: Cleanup CI

chore: Cleanup CI #37

Workflow file for this run

name: Base Tests
on:
push:
branches:
- master
pull_request:
workflow_call:
inputs:
nim_branch:
description: 'Nim branch configurations'
required: false
type: string
default: "[]"
exclude:
description: 'Exclude matrix configurations'
required: false
type: string
default: "[]"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
delete_cache:
name: Delete github action's branch cache
runs-on: ubuntu-latest
steps:
- uses: snnaplab/delete-branch-cache-action@v1
test:
needs: delete_cache
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
platform:
- os: linux
cpu: amd64
builder: ubuntu-22.04
shell: bash
- os: linux
cpu: i386
builder: ubuntu-22.04
shell: bash
- os: macos
cpu: amd64
builder: macos-13
shell: bash
- os: windows
cpu: amd64
builder: windows-2022
shell: msys2 {0}
nim_branch:
- version: version-1-6
memory_management: refc
- version: version-2-0
memory_management: refc
- ${{ fromJson(inputs.nim_branch) }}
# If exclude is defined then use its value, otherwise default to empty list (as declared on workflow_call.inputs).
# Reason for above is when workflow is not initiated by workflow_call, the parameters are not defined. Their value is 0 or '' (empty string).
# This relies on the value 0 meaning the parameter was not filled in.
# exclude: ${{ inputs.exclude != 0 && fromJSON(inputs.exclude) || fromJSON('[]') }}
exclude: ${{ inputs.exclude != 0 && fromJSON(inputs.exclude) || fromJSON('[]') }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
# name: '${{ matrix.platform.os }}-${{ matrix.platform.cpu }} (Nim ${{ matrix.nim_branch.version }})'
name: '${{ matrix.platform.os }}-${{ matrix.platform.cpu }}-${{ matrix.platform.builder }}-${{ matrix.platform.shell }} (Nim ${{ matrix.nim_branch.version }}-${{ matrix.nim_branch.memory_management }})'
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.nim_branch.version == 'version-2-0' || matrix.nim_branch.version == 'devel' }}
steps:
- name: Matrix info
run: ""
# - name: Checkout
# uses: actions/checkout@v4
# with:
# submodules: true
# - name: Setup Nim
# uses: "./.github/actions/install_nim"
# with:
# os: ${{ matrix.platform.os }}
# shell: ${{ matrix.platform.shell }}
# nim_branch: ${{ matrix.nim_branch.version }}
# cpu: ${{ matrix.platform.cpu }}
# - name: Setup Go
# uses: actions/setup-go@v5
# with:
# go-version: '~1.15.5'
# cache: false
# - name: Install p2pd
# run: |
# V=1 bash scripts/build_p2pd.sh p2pdCache 124530a3
# - name: Install deps
# run: |
# nimble install -y --depsOnly
# - name: Run tests
# run: |
# nim --version
# nimble --version
# NIMFLAGS="${NIMFLAGS} --mm:${{ matrix.nim_branch.memory_management }}"
# nimble test