From 5661be16ee17f9ea3abf14f35cfabc9ee11de1bf Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Mon, 13 Nov 2023 14:58:33 +0100 Subject: [PATCH] Use our overlay ppa build in e2e deb build --- .github/workflows/qa-azure.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/qa-azure.yaml b/.github/workflows/qa-azure.yaml index 187d763bd..6501f1c10 100644 --- a/.github/workflows/qa-azure.yaml +++ b/.github/workflows/qa-azure.yaml @@ -20,12 +20,18 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v4 + - name: Add our own needed packages to the container + run: | + set -eu + + cd .github/deb-build-docker/ + docker build . -t ubuntu:deb-build - name: Build debian package uses: canonical/desktop-engineering/gh-actions/common/build-debian@main with: source-dir: wsl-pro-service token: ${{ secrets.GITHUB_TOKEN }} - docker-image: ubuntu:devel + docker-image: ubuntu:deb-build env: UP4W_SKIP_INTERNAL_DEPENDENCY_UPDATE: "1"