Create cmake-single-platform.yml
This commit is contained in:
parent
0196d4ab36
commit
32725928b4
28
.github/workflows/cmake-single-platform.yml
vendored
Normal file
28
.github/workflows/cmake-single-platform.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: CMake Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
env:
|
||||
BUILD_TYPE: Release
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install Qt5
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y qt5-default qtbase5-dev qtbase5-dev-tools
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||
Loading…
Reference in New Issue
Block a user