This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Merge pull request #62 from hydra-emu/ew-rewrite #81
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: Build Ubuntu | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install-qt | |
uses: jurplel/[email protected] | |
with: | |
version: '6.2.*' | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
- name: clang-format | |
run: | | |
./scripts/check_clang_format.sh | |
- name: install-deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgl-dev ninja-build | |
- name: configure | |
run: CC=/usr/bin/gcc-12 CXX=/usr/bin/g++-12 cmake -B build -G Ninja -D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache | |
- name: make | |
run: cmake --build build --target hydra | |
- name: upload | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Linux executable | |
path: './build/hydra' |