From 2ed31006b5d938106b29f8fa95913ce8f1e733f5 Mon Sep 17 00:00:00 2001 From: Ake Hedman Date: Tue, 12 Nov 2024 17:33:29 +0100 Subject: [PATCH] test --- .github/workflows/appimage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index ac3c6c0..3e2a34a 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -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: @@ -65,7 +65,7 @@ jobs: version: 6.8.* host: 'linux' target: 'desktop' - arch: 'linux_amd64_gcc' + arch: 'linux_gcc_64' modules: 'qtcharts qtconnectivity qtserialbus qtserialport qtwebsockets' # extra: '--exclude-libs=libqsqlmimer' @@ -75,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