forked from verilog-to-routing/vtr-verilog-to-routing
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request verilog-to-routing#2834 from AlexandreSinger/featu…
…re-ci-noble-upgrade [CI] Added GCC-13 on Ubuntu Noble as a Compatibility Test
- Loading branch information
Showing
2 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -471,6 +471,37 @@ jobs: | |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | ||
./.github/scripts/build.sh | ||
NobleCompatibility: | ||
name: 'Ubuntu Noble - 24.04 Compatibility Test' | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12.3 | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
|
||
- name: Get number of CPU cores | ||
uses: SimenB/github-actions-cpu-cores@v2 | ||
id: cpu-cores | ||
|
||
- name: Install Dependencies | ||
run: ./.github/scripts/install_noble_dependencies.sh | ||
|
||
- uses: hendrikmuhs/[email protected] | ||
|
||
- name: Test | ||
env: | ||
CMAKE_PARAMS: "-DVTR_ASSERT_LEVEL=3 -DCMAKE_COMPILE_WARNING_AS_ERROR=on -DVTR_IPO_BUILD=off" | ||
MATRIX_EVAL: 'CC=gcc-13 && CXX=g++-13' | ||
BUILD_TYPE: release | ||
NUM_PROC: ${{ steps.cpu-cores.outputs.count }} | ||
run: | | ||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | ||
./.github/scripts/build.sh | ||
Coverity: | ||
name: 'Coverity Scan' | ||
needs: | ||
|
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