diff options
-rw-r--r-- | .github/workflows/scripts/windows-container-prep.sh | 3 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/scripts/windows-container-prep.sh b/.github/workflows/scripts/windows-container-prep.sh index e6f447d91..a71ee381f 100644 --- a/.github/workflows/scripts/windows-container-prep.sh +++ b/.github/workflows/scripts/windows-container-prep.sh @@ -1,8 +1,7 @@ #!/bin/bash # abstract the prepare commands for the windows build into a script that can be reused # instead of a yaml file -cd /win -ln -s /__w/subsurface/subsurface . + echo "downloading sources for fresh build" bash subsurface/scripts/get-dep-lib.sh single . libzip bash subsurface/scripts/get-dep-lib.sh single . googlemaps diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index be38ae37e..22b45809e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -11,7 +11,7 @@ jobs: buildInContainer: runs-on: ubuntu-latest container: - image: docker://subsurface/mxe-build-container:1.0 + image: docker://subsurface/mxe-build-container:1.1 steps: - name: checkout sources @@ -20,6 +20,8 @@ jobs: - name: get other dependencies run: | echo "Running script to install additional dependancies into container" + cd /win + ln -s /__w/subsurface/subsurface . bash -x subsurface/.github/workflows/scripts/windows-container-prep.sh 2>&1 | tee pre-build.log - name: run build run: | |