actions BUGFIX package build pwd
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 594945c..88c81af 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -105,7 +105,7 @@
packager: "sudo apt-get",
packages: "python3-pip",
snaps: "",
- build-cmd: "pip install apkg && apkg system-setup && apkg build && apkg install"
+ build-cmd: ""
}
steps:
@@ -135,6 +135,16 @@
sudo make install
if: ${{ matrix.config.name == 'Debug, gcc' }}
+ - name: Build-and-install-package
+ shell: bash
+ working-directory: ${{ github.workspace }}
+ run: |
+ pip install apkg
+ apkg system-setup
+ apkg build
+ apkg install
+ if: ${{ matrix.config.name == 'DEB Package' }}
+
- name: Configure
shell: bash
working-directory: ${{ github.workspace }}
@@ -151,11 +161,13 @@
export LC_ALL=C.UTF-8
export PATH=/snap/bin:${{ github.workspace }}/coverity-tools/bin:$PATH
${{ matrix.config.build-cmd }}
+ if: ${{ matrix.config.name != 'DEB Package' }}
- name: Test
shell: bash
working-directory: ${{ github.workspace }}/build
run: ctest --output-on-failure
+ if: ${{ matrix.config.name != 'DEB Package' }}
build-windows:
name: ${{ matrix.name }}