Skip to content

WIP: rename jobs to try to get github to run actions #121

WIP: rename jobs to try to get github to run actions

WIP: rename jobs to try to get github to run actions #121

Workflow file for this run

name: cmake-test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
cmake-test-macos:
uses: ./.github/workflows/cmake-test-on.yml

Check failure on line 11 in .github/workflows/cmake-test.yml

View workflow run for this annotation

GitHub Actions / cmake-test

Invalid workflow file

The workflow is not valid. .github/workflows/cmake-test.yml (Line: 11, Col: 11): Input variant is required, but not provided while calling. .github/workflows/cmake-test.yml (Line: 17, Col: 19): Invalid input, build_type is not defined in the referenced workflow.
with:
os: ${{ matrix.os }}
os_version: ${{ matrix.os_version }}
compiler: ${{ matrix.compiler }}
triplet: ${{ matrix.triplet }}
build_type: ${{ matrix.build_type }}
strategy:
fail-fast: false
matrix:
os: [macos]
os_version: [latest]
compiler: [clang++]
variant: [Debug, Release]
cmake-test-ubuntu:
uses: ./.github/workflows/cmake-test-on.yml
with:
os: ${{ matrix.os }}
os_version: ${{ matrix.os_version }}
compiler: ${{ matrix.compiler }}
triplet: ${{ matrix.triplet }}
build_type: ${{ matrix.build_type }}
strategy:
fail-fast: false
matrix:
os: [ubuntu]
os_version: [latest]
compiler: [clang++, g++]
variant: [Debug, Release]
cmake-test-windows:
uses: ./.github/workflows/cmake-test-on.yml
with:
os: ${{ matrix.os }}
os_version: ${{ matrix.os_version }}
compiler: ${{ matrix.compiler }}
triplet: ${{ matrix.triplet }}
build_type: ${{ matrix.build_type }}
strategy:
fail-fast: false
matrix:
os: [windows]
os_version: [latest]
compiler: [cl]
variant: [Debug, Release]
cmake-test:
needs: [cmake-test-ubuntu, cmake-test-macos, cmake-test-windows]
runs-on: ubuntu-latest
steps:
- run: |
echo "All tests completed"