Skip to content

Commit

Permalink
Update ubuntu.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
s12mmm3 committed Feb 8, 2024
1 parent 2343f41 commit 324ed7d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,15 @@ jobs:
# 5.12.12
- qt_version: 5.12.12
qt_arch: gcc_64
arch: x64
# 5.15.2
- qt_version: 5.15.2
qt_arch: gcc_64
arch: x64
# 6.2.4
- qt_version: 6.2.4
qt_arch: gcc_64
arch: x64
# 6.6.0
- qt_version: 6.6.1
qt_arch: gcc_64
arch: x64
modules: 'qthttpserver qtwebsockets'
env:
BUILD_TYPE: Release
Expand Down Expand Up @@ -60,11 +56,20 @@ jobs:
with:
fetch-depth: 1
submodules: true

- name: Install dependencies
run: |
sudo apt-get upgrade
sudo apt-get update
sudo apt-get install -y build-essential cmake
- name: CMake Build
id: build
run: |
cmake -A ${{ matrix.arch }} -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DCMAKE_INSTALL_PREFIX=${{ github.workspace }} -B ${{ env.BUILD_PATH }}
cmake -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DCMAKE_INSTALL_PREFIX=${{ github.workspace }} -B ${{ env.BUILD_PATH }}
ls
cat Makefile | grep install:
# CMake Install
- name: CMake Install
env:
Expand Down

0 comments on commit 324ed7d

Please sign in to comment.