diff options
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 530c051..f07d96b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,27 @@ jobs: - name: make run: make build/kristall - + + build_cmake: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + + - uses: jurplel/install-qt-action@v2 + with: + version: "5.12.8" + + - name: Install OpenSSL + run: sudo apt install -y libssl-dev + + - name: Configure the project + uses: threeal/cmake-action@v1.3.0 + with: + build-dir: build + + - name: Build the project + run: cmake --build build + # Disabled until both aqinstall and install-qt-action support the fixes… # build_windows: # runs-on: windows-latest |
