diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 24660e8e5..dcd06c171 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -19,6 +19,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install OpenShift CLI tools + uses: redhat-actions/openshift-tools-installer@v1 + with: + oc: "4.14" + - name: Clean up - dev (OCP4) shell: bash run: | @@ -50,6 +55,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install OpenShift CLI tools + uses: redhat-actions/openshift-tools-installer@v1 + with: + oc: "4.14" + - name: Clean up dev database shell: bash run: | diff --git a/.github/workflows/post_merge_integration.yml b/.github/workflows/post_merge_integration.yml index d163cc5d1..6455652b5 100644 --- a/.github/workflows/post_merge_integration.yml +++ b/.github/workflows/post_merge_integration.yml @@ -66,7 +66,7 @@ jobs: run: | poetry run python -m pip install --upgrade pip poetry install - poetry run python -m pip install gdal==$(gdal-config --version) + poetry run python -m pip install --no-build-isolation --no-cache-dir --force-reinstall gdal==$(gdal-config --version) - name: Lint (api) # We used to be able to do linting before installing gdal, but it's not possible anymore. # We can however place it ahead of the R installs. @@ -141,7 +141,7 @@ jobs: run: | poetry run python -m pip install --upgrade pip poetry install - poetry run python -m pip install gdal==$(gdal-config --version) + poetry run python -m pip install --no-build-isolation --no-cache-dir --force-reinstall gdal==$(gdal-config --version) - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.R }}