summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Rudge <owen@owenrudge.net>2021-01-14 10:13:27 +0000
committerOwen Rudge <owen@owenrudge.net>2021-01-14 12:10:23 +0000
commitbc8f347ef2386d77e105b336cec9c0242261f9fa (patch)
tree842553e37b45b20d4776d9018fa158fb7fd9726a
parentcc5f190cb32af0a09183217984a0a5f09afc2caa (diff)
downloadopenttd-bc8f347ef2386d77e105b336cec9c0242261f9fa.tar.xz
Fix: vcpkg binaries were not being cached on Mac
-rw-r--r--.github/workflows/release.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 6b9acc1e6..3191e36d2 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -383,18 +383,18 @@ jobs:
run: |
tar -xf source.tar.gz --strip-components=1
- # The following step can be removed and the default vcpkg installation
- # (/usr/local/share/vcpkg) restored when the build VM is updated with a revision of
- # vcpkg dating from roughly 01/01/2021 or later.
+ # The following step can be removed when the build VM is updated with a revision of
+ # vcpkg dating from roughly 01/01/2021 or later. At that point, `doNotUpdateVcpkg`
+ # can be set to `true` and the `vcpkgGitCommitId` can be removed.
- name: Update vcpkg
run: |
- cd /tmp
- git clone https://github.com/Microsoft/vcpkg
+ cd /usr/local/share/vcpkg
+ git fetch --unshallow
- name: Prepare vcpkg (with cache)
uses: lukka/run-vcpkg@v6
with:
- vcpkgDirectory: '/tmp/vcpkg'
+ vcpkgDirectory: '/usr/local/share/vcpkg'
doNotUpdateVcpkg: false
vcpkgGitCommitId: 2a42024b53ebb512fb5dd63c523338bf26c8489c
vcpkgArguments: 'freetype liblzma lzo'
@@ -439,7 +439,7 @@ jobs:
cmake ${GITHUB_WORKSPACE} \
-DCMAKE_OSX_ARCHITECTURES=${{ matrix.full_arch }} \
-DVCPKG_TARGET_TRIPLET=${{ matrix.arch }}-osx \
- -DCMAKE_TOOLCHAIN_FILE=/tmp/vcpkg/scripts/buildsystems/vcpkg.cmake \
+ -DCMAKE_TOOLCHAIN_FILE=/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake \
-DHOST_BINARY_DIR=${GITHUB_WORKSPACE}/build-host \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCPACK_BUNDLE_APPLE_CERT_APP=${{ secrets.APPLE_DEVELOPER_CERTIFICATE_ID }} \