yosys/.github/workflows/test-compile.yml

108 lines
2.7 KiB
YAML
Raw Normal View History

2024-02-14 15:00:58 -06:00
name: Compiler testing
on:
pull_request:
branches:
2024-03-21 15:16:43 -05:00
- main
2024-02-14 15:00:58 -06:00
push:
branches:
2024-03-21 15:16:43 -05:00
- main
2024-02-14 15:00:58 -06:00
jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
paths_ignore: '["**/README.md", "docs/**", "guidelines/**"]'
# cancel previous builds if a new commit is pushed
cancel_others: 'true'
# only run on push *or* pull_request, not both
concurrent_skipping: 'same_content_newer'
test-compile:
runs-on: ${{ matrix.os }}
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
env:
CXXSTD: ${{ matrix.cpp_std }}
2024-03-03 16:37:25 -06:00
CXXFLAGS: ${{ startsWith(matrix.compiler, 'gcc') && '-Wp,-D_GLIBCXX_ASSERTIONS' || ''}}
CC_SHORT: ${{ startsWith(matrix.compiler, 'gcc') && 'gcc' || 'clang' }}
2024-02-14 15:00:58 -06:00
strategy:
matrix:
os:
- ubuntu-20.04
compiler:
- 'clang-12'
- 'gcc-11'
cpp_std:
- 'c++11'
- 'c++14'
- 'c++17'
- 'c++20'
include:
# macOS builds
- os: macos-13
compiler: 'clang'
cpp_std: 'c++11'
- os: macos-13
compiler: 'clang'
cpp_std: 'c++17'
# Limited testing for older compilers
- os: ubuntu-20.04
compiler: 'clang-11'
cpp_std: 'c++11'
- os: ubuntu-20.04
compiler: 'gcc-10'
cpp_std: 'c++11'
2024-03-20 16:01:01 -05:00
# Limited testing for newer compilers
- os: ubuntu-20.04
compiler: 'clang-13'
cpp_std: 'c++11'
- os: ubuntu-20.04
compiler: 'clang-14'
cpp_std: 'c++11'
- os: ubuntu-20.04
compiler: 'clang-15'
cpp_std: 'c++11'
- os: ubuntu-20.04
compiler: 'clang-16'
cpp_std: 'c++11'
- os: ubuntu-20.04
compiler: 'clang-17'
cpp_std: 'c++11'
- os: ubuntu-20.04
compiler: 'gcc-13'
cpp_std: 'c++11'
2024-02-14 15:00:58 -06:00
fail-fast: false
steps:
2024-03-03 18:12:45 -06:00
- name: Checkout Yosys
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-build-env
2024-02-14 15:00:58 -06:00
2024-03-03 16:37:25 -06:00
- name: Setup Cpp
uses: aminya/setup-cpp@v1
with:
compiler: ${{ matrix.compiler }}
2024-02-14 15:00:58 -06:00
- name: Tool versions
shell: bash
run: |
$CC --version
$CXX --version
- name: Build
shell: bash
run: |
make config-$CC_SHORT
make -j$procs CXXSTD=$CXXSTD
2024-02-14 15:00:58 -06:00
- name: Log yosys-config output
run: |
./yosys-config || true