Merge pull request #17 from shravanngoswamii/tor/benchmark-update #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- backport-* | |
pull_request: | |
branches: | |
- master | |
- backport-* | |
merge_group: | |
types: [checks_requested] | |
# needed to allow julia-actions/cache to delete old caches that it has created | |
permissions: | |
actions: write | |
contents: read | |
# Cancel existing tests on the same PR if a new commit is added to a pull request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
runs-on: ${{ matrix.runner.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
runner: | |
# Current stable version | |
- version: '1' | |
os: ubuntu-latest | |
arch: x64 | |
num_threads: 2 | |
# Minimum supported version | |
- version: 'min' | |
os: ubuntu-latest | |
arch: x64 | |
num_threads: 2 | |
# Single-threaded | |
- version: '1' | |
os: ubuntu-latest | |
arch: x64 | |
num_threads: 1 | |
# Minimum supported version, single-threaded | |
- version: 'min' | |
os: ubuntu-latest | |
arch: x64 | |
num_threads: 1 | |
# x86 | |
- version: '1' | |
os: ubuntu-latest | |
arch: x86 | |
num_threads: 2 | |
# Windows | |
- version: '1' | |
os: windows-latest | |
arch: x64 | |
num_threads: 2 | |
# macOS | |
- version: '1' | |
os: macos-latest | |
arch: aarch64 | |
num_threads: 2 | |
test_group: | |
- Group1 | |
- Group2 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.runner.version }} | |
arch: ${{ matrix.runner.arch }} | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 | |
env: | |
GROUP: ${{ matrix.test_group }} | |
JULIA_NUM_THREADS: ${{ matrix.runner.num_threads }} | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v5 | |
with: | |
files: lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
- uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: lcov.info |