Ignore VLA warnings in newer Clang #379
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: Tulips CI/CD | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-debug-and-test-with-clang: | |
runs-on: ubuntu-latest | |
container: | |
image: xenogenics/tulips-builder | |
env: | |
CTEST_PARALLEL_LEVEL: 2 | |
options: --cpus 2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cmake | |
run: make debug-all | |
- name: build | |
run: make build | |
- name: test | |
run: make test | |
build-debug-and-test-with-gcc: | |
runs-on: ubuntu-latest | |
container: | |
image: xenogenics/tulips-builder | |
env: | |
CC: gcc | |
CXX: g++ | |
CTEST_PARALLEL_LEVEL: 2 | |
options: --cpus 2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cmake | |
run: make debug-all | |
- name: build | |
run: make build | |
- name: test | |
run: make test | |
build-release-with-clang: | |
runs-on: ubuntu-latest | |
container: | |
image: xenogenics/tulips-builder | |
env: | |
CTEST_PARALLEL_LEVEL: 2 | |
options: --cpus 2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cmake | |
run: make release-all | |
- name: build | |
run: make build | |
build-release-with-gcc: | |
runs-on: ubuntu-latest | |
container: | |
image: xenogenics/tulips-builder | |
env: | |
CC: gcc | |
CXX: g++ | |
CTEST_PARALLEL_LEVEL: 2 | |
options: --cpus 2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cmake | |
run: make release-all | |
- name: build | |
run: make build | |
check-format: | |
runs-on: ubuntu-latest | |
container: | |
image: xenogenics/tulips-builder | |
options: --cpus 2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cmake | |
run: make debug-all | |
- name: format | |
run: make format-check | |
lint: | |
runs-on: ubuntu-latest | |
container: | |
image: xenogenics/tulips-builder | |
options: --cpus 2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cmake | |
run: make debug-all | |
- name: lint | |
run: make tidy |