Reduce example names to be able to run Conda CI on Windows (gz-cmake2) #1870
Workflow file for this run
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: Ubuntu CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'ign-cmake[0-9]' | |
- 'gz-cmake[0-9]' | |
- 'main' | |
jobs: | |
bionic-ci: | |
runs-on: ubuntu-latest | |
name: Ubuntu Bionic CI | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Compile and test | |
id: ci | |
uses: ignition-tooling/action-ignition-ci@bionic | |
with: | |
cmake-args: '-DBUILDSYSTEM_TESTING=True' | |
codecov-enabled: false | |
focal-ci: | |
runs-on: ubuntu-latest | |
name: Ubuntu Focal CI | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Compile and test | |
id: ci | |
uses: ignition-tooling/action-ignition-ci@focal | |
with: | |
cmake-args: '-DBUILDSYSTEM_TESTING=True' | |
jammy-ci: | |
runs-on: ubuntu-latest | |
name: Ubuntu Jammy CI | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Compile and test | |
id: ci | |
uses: ignition-tooling/action-ignition-ci@jammy | |
with: | |
cmake-args: '-DBUILDSYSTEM_TESTING=True' | |