From d0237352e3464b2800e78845366bcd7eda85eab3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jan=20K=C3=B6hler?= Date: Thu, 12 Dec 2024 13:25:35 +0100 Subject: [PATCH] Update integration-tests.yml --- .github/workflows/integration-tests.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 3ab38b36..61ca6fde 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -34,13 +34,13 @@ on: env: KLAYOUT_DEB: "klayout_0.29.10-1_amd64.deb" - KLAYOUT_URL: "https://www.klayout.org/downloads/Ubuntu-24/klayout_0.29.10-1_amd64.deb" + KLAYOUT_URL: "https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.10-1_amd64.deb" jobs: run-tests: name: "Run integration tests" - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 continue-on-error: true steps: @@ -61,16 +61,16 @@ jobs: wget "$KLAYOUT_URL" popd - - name: "Install klayout APT dependencies" - run: | - sudo apt update - sudo apt install -y libstdc++6 libc6 python3.12 ruby3.2 libgit2-1.7 - sudo apt install -y libqt5svg5 libqt5core5t64 libqt5designer5 libqt5gui5t64 libqt5multimedia5 libqt5multimediawidgets5 libqt5network5t64 libqt5opengl5t64 libqt5printsupport5t64 libqt5sql5t64 libqt5widgets5t64 libqt5xml5t64 libqt5xmlpatterns5 +# - name: "Install klayout APT dependencies" +# run: | +# sudo apt update +# sudo apt install -y libstdc++6 libc6 python3.12 ruby3.2 libgit2-1.7 +# sudo apt install -y libqt5svg5 libqt5core5t64 libqt5designer5 libqt5gui5t64 libqt5multimedia5 libqt5multimediawidgets5 libqt5network5t64 libqt5opengl5t64 libqt5printsupport5t64 libqt5sql5t64 libqt5widgets5t64 libqt5xml5t64 libqt5xmlpatterns5 - name: "Install klayout deb 📦" run: | pushd klayout-deb - sudo dpkg -i $KLAYOUT_DEB + sudo apt-get install $KLAYOUT_DEB klayout -v popd