Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed Nov 12, 2024
1 parent bb6bf03 commit 64201b0
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
VSCP_ROOT: ${{github.workspace}}/vscp
VSCP_ROOT: ${{github.workspace}}/third_party/vscp

jobs:
build:
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.7.3
version: 6.8.0
host: 'linux'
target: 'desktop'
arch: 'linux_gcc_64'
Expand All @@ -31,18 +31,10 @@ jobs:
with:
submodules: recursive

- name: Checkout vscp repo
uses: actions/checkout@v4
with:
repository: grodansparadis/vscp
path: ${{github.workspace}}/vscp
ref: development
submodules: recursive

- name: Create environment variable for VSCP_ROOT and Qt6_DIR
run: |
export VSCP_ROOT=${{github.workspace}}/vscp
echo echo ${{env.VSCP_ROOT}}
export VSCP_ROOT=${{github.workspace}}/third_party/vscp
echo ${{env.VSCP_ROOT}}
- name: Checkout eclipse paho repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -83,7 +75,7 @@ jobs:
- name: Create Build Environment
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DVSCP_ROOT=${{github.workspace}}/vscp2/ -DVSCP_PATH=${{github.workspace}}/vscp/ ..
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DVSCP_ROOT=${{github.workspace}}/third_party/vscp/ -DVSCP_PATH=${{github.workspace}}/third_party/vscp/ ..
- name: Build vscp-works-qt
working-directory: ${{github.workspace}}/build
Expand Down

0 comments on commit 64201b0

Please sign in to comment.