From e850cc982407c42b180ff284ab34e321acfdaa89 Mon Sep 17 00:00:00 2001 From: Furgo <148809153+furgo16@users.noreply.github.com> Date: Mon, 9 Jun 2025 18:10:40 +0200 Subject: [PATCH] CI: add ifcopenshell to Ubuntu native builds (#21709) * CI: add ifcopenshell to Ubuntu native builds * CI: move test dependencies installation after build/runtime deps installation * CI: bump ifcopenshell --- .github/workflows/sub_buildUbuntu.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/sub_buildUbuntu.yml b/.github/workflows/sub_buildUbuntu.yml index dca90d3e86..ff96bd1f4f 100644 --- a/.github/workflows/sub_buildUbuntu.yml +++ b/.github/workflows/sub_buildUbuntu.yml @@ -80,9 +80,17 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: submodules: true + - name: Install FreeCAD dependencies run: ./package/ubuntu/install-apt-packages.sh + - name: Install FreeCAD Python test dependencies + run: | + sudo apt-get update -y -qq + sudo apt-get install -y -qq python3-pip + python3 -m pip install --upgrade pip + python3 -m pip install ifcopenshell==0.8.2 + - name: Make needed directories, files and initializations id: Init run: |