Skip to content

Changed some of the runners used in the GitHub Actions CI workflow. #602

Changed some of the runners used in the GitHub Actions CI workflow.

Changed some of the runners used in the GitHub Actions CI workflow. #602

Workflow file for this run

name: ci

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 20, Col: 17): Unexpected value ''
on:
push:
branches:
- '**'
- '!mdadams-joss'
tags-ignore:
- '**'
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15]
compiler: [ {cc: gcc, cxx: g++}, {cc: clang, cxx: clang++} ]
include:
- os: [windows-2025]
exclude:
# Temporarily disable Ubuntu 20.04 with GCC since linking with
# TSan fails due the linker being unable to find libtsan_preinit.o.
# This used to work previously.
# Perhaps, the cause is related to the following Ubuntu issue:
# https://bugs.launchpad.net/ubuntu/+source/gcc-9/+bug/2029910
#- os: ubuntu-20.04
# compiler: {cc: gcc, cxx: g++}
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.1
############################################################
- name: prebuild
shell: bash
run: build/github/prebuild-v2 -c '${{runner.temp}}'/commands
############################################################
- name: testing
env:
CC: ${{ matrix.compiler.cc }}
CXX: ${{ matrix.compiler.cxx }}
shell: bash
#run: build/build_all -v -d 2
run: build/build_all -C '${{runner.temp}}'/commands
############################################################