Skip to content

tests/fastARM

tests/fastARM #127

Workflow file for this run

name: tests/fastARM
on:
workflow_dispatch:
schedule:
- cron: '30 6 * * *'
env:
DOTNET_INSTALL_DIR: "./.dotnet"
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-24.04-arm, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Install dependencies
run: dotnet restore
- name: Test - Release
run: dotnet test --configuration Release --no-restore
env: # Or as an environment variable
RAVEN_LICENSE: ${{ secrets.RAVEN_LICENSE }}
RAVEN_MAX_RUNNING_TESTS: 1
working-directory: ./test/FastTests
debug:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-24.04-arm, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Install dependencies
run: dotnet restore
- name: Test - Debug
run: dotnet test --configuration Debug --no-restore
env: # Or as an environment variable
RAVEN_LICENSE: ${{ secrets.RAVEN_LICENSE }}
RAVEN_MAX_RUNNING_TESTS: 1
working-directory: ./test/FastTests