diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a38e08f..3b7d5bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -97,6 +97,13 @@ jobs: runs-on: ubuntu-latest needs: deb-package-build steps: + - uses: actions/checkout@v4 + + - name: Build + run: | + cmake -B ${{ github.workspace }}/build + cmake --build ${{ github.workspace }}/build --target deb + - name: Install package run: echo '/kolibrios-toolchain' | sudo apt install ${{ github.workspace }}/build/package.deb -y @@ -139,6 +146,18 @@ jobs: runs-on: ubuntu-latest needs: chocolatey-package-build steps: + - uses: actions/checkout@v4 + + - name: Install modules + run: | + Set-PSRepository PSGallery -InstallationPolicy Trusted + Install-Module -Name 7Zip4PowerShell + + - name: Build + run: | + cmake -B ${{ github.workspace }}/build + cmake --build ${{ github.workspace }}/build --target choco + - name: Install package run: choco install ${{ github.workspace }}\build\choco-package.nupkg