-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bartłomiej Burdukiewicz <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -11,13 +11,13 @@ jobs: | |
uses: actions/checkout@v1 | ||
with: | ||
submodules: recursive | ||
- name: install gcc 10 | ||
run: sudo apt-get install gcc-10 g++-10 | ||
- name: install gcc 11 | ||
run: sudo apt-get install gcc-11 g++-11 | ||
- name: install qt | ||
uses: jurplel/[email protected].0 | ||
uses: jurplel/[email protected].2 | ||
- name: install opengl | ||
run: sudo apt-get install mesa-common-dev libglu1-mesa-dev ninja-build -y | ||
- name: cmake | ||
run: CC="gcc-10" CXX="g++-10" cmake -GNinja -DTESTS=OFF -DBENCHMARKS=OFF . | ||
run: CC="gcc-11" CXX="g++-11" cmake -GNinja -DTESTS=OFF -DBENCHMARKS=OFF . | ||
- name: ninja | ||
run: CC="gcc-10" CXX="g++-10" ninja | ||
run: CC="gcc-11" CXX="g++-11" ninja |