Skip to content

Commit

Permalink
fix dockerfile path so it matches master (#44575)
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Aug 5, 2021
1 parent ba33a2d commit ebabe09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Expand Up @@ -43,7 +43,7 @@ jobs:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
CC: /usr/lib/ccache/gcc
CXX: /usr/lib/ccache/g++ # Building SIP binding freezes with Clang in Docker, maybe a SIP issue, maybe not
DOCKER_BUILD_DEPS_FILE: qgis3-build-deps.dockerfile
DOCKER_BUILD_DEPS_FILE: qgis3-qt5-build-deps.dockerfile

strategy:
matrix: ${{ fromJSON( needs.define-strategy.outputs.matrix ) }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Expand Up @@ -84,7 +84,7 @@ jobs:
run: |
pushd .docker
docker pull qgis/qgis3-build-deps:${DOCKER_TAG} || true
docker build --build-arg UBUNTU_BASE=${UBUNTU_BASE} --cache-from qgis/qgis3-build-deps:${DOCKER_TAG} -t qgis/qgis3-build-deps:${DOCKER_TAG} -f qgis3-build-deps.dockerfile .
docker build --build-arg UBUNTU_BASE=${UBUNTU_BASE} --cache-from qgis/qgis3-build-deps:${DOCKER_TAG} -t qgis/qgis3-build-deps:${DOCKER_TAG} -f qgis3-qt5-build-deps.dockerfile .
popd
- name: Push deps image
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
pushd .docker
TARGET=$( ( [[ ${TEST_BATCH} == "ORACLE" ]] && echo "binary-for-oracle" ) \
|| echo "binary-only" )
docker build --target $TARGET --build-arg UBUNTU_BASE=${UBUNTU_BASE} --cache-from qgis/qgis3-build-deps:${DOCKER_TAG} -t qgis/qgis3-build-deps-bin-only:${DOCKER_TAG} -f qgis3-build-deps.dockerfile .
docker build --target $TARGET --build-arg UBUNTU_BASE=${UBUNTU_BASE} --cache-from qgis/qgis3-build-deps:${DOCKER_TAG} -t qgis/qgis3-build-deps-bin-only:${DOCKER_TAG} -f qgis3-qt5-build-deps.dockerfile .
popd
- name: Print disk space
Expand Down

0 comments on commit ebabe09

Please sign in to comment.