From 159cb20d627fb6f3a58c9294c621e062d36bc9af Mon Sep 17 00:00:00 2001 From: Nico Miguelino Date: Thu, 25 Jul 2024 08:26:37 -0700 Subject: [PATCH] fix: CI workflow for building and pushing webview images (#1990) --- .github/workflows/build-webview.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-webview.yaml b/.github/workflows/build-webview.yaml index af147d34f..932da777b 100644 --- a/.github/workflows/build-webview.yaml +++ b/.github/workflows/build-webview.yaml @@ -86,13 +86,16 @@ jobs: - name: Start compilation run: | cd webview - docker run --rm -t \ + docker run -itd \ + --name qt-builder \ -v ~/tmp/qt-src:/src:Z \ -v /tmp/.cache/ccache:/src/ccache:Z \ -v ~/tmp/qt-build:/build:Z \ -v $(pwd):/webview:ro \ -e TARGET=${{ matrix.board }} \ screenly/ose-qt-builder:latest + docker exec -it qt-builder /webview/build_qt5.sh + docker rm -f qt-builder - uses: actions/upload-artifact@v3 with: