Skip to content

Commit d1b7162

Browse files
committed
Try without gettext
Signed-off-by: Dennis Ameling <[email protected]>
1 parent 98fdd1e commit d1b7162

File tree

1 file changed

+2
-25
lines changed

1 file changed

+2
-25
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -265,30 +265,7 @@ jobs:
265265
mkdir -p "$HOME" &&
266266
git config --global user.name "$USER_NAME" &&
267267
git config --global user.email "$USER_EMAIL"
268-
- uses: actions/checkout@v1
269-
- name: Cache git-sdk-64-build-installers
270-
id: cache-sdk-build-installers
271-
uses: actions/cache@v2
272-
with:
273-
path: git-sdk-64-build-installers
274-
key: build-installers-64-${{ needs.bundle-artifacts.outputs.latest-sdk64-extra-build-id }}
275-
- name: Download git-sdk-64-build-installers
276-
if: steps.cache-sdk-build-installers.outputs.cache-hit != 'true'
277-
shell: bash
278-
run: |
279-
# Use Git Bash to download and unpack the artifact
280-
281-
## Get artifact
282-
urlbase=https://dev.azure.com/git-for-windows/git/_apis/build/builds
283-
id=${{ needs.bundle-artifacts.outputs.latest-sdk64-extra-build-id }}
284-
download_url=$(curl "$urlbase/$id/artifacts" |
285-
jq -r '.value[] | select(.name == "git-sdk-64-build-installers").resource.downloadUrl')
286-
287-
curl -o artifacts.zip "$download_url"
288-
289-
## Unpack artifact
290-
unzip artifacts.zip
291-
rm artifacts.zip
268+
- uses: actions/checkout@v2
292269
- name: initialize vcpkg
293270
uses: actions/checkout@v2
294271
with:
@@ -314,7 +291,7 @@ jobs:
314291
shell: bash
315292
run: |
316293
cmake `pwd`/contrib/buildsystems/ -DCMAKE_PREFIX_PATH=`pwd`/compat/vcbuild/vcpkg/installed/arm64-windows \
317-
-DMSGFMT_EXE=`pwd`/git-sdk-64-build-installers/mingw64/bin/msgfmt.exe -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON -DCMAKE_GENERATOR_PLATFORM=arm64 -DVCPKG_ARCH=arm64-windows \
294+
-DNO_GETTEXT=YesPlease -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON -DCMAKE_GENERATOR_PLATFORM=arm64 -DVCPKG_ARCH=arm64-windows \
318295
-DCMAKE_INSTALL_PREFIX="`pwd`/git-arm64"
319296
- name: MSBuild
320297
run: msbuild git.sln -property:Configuration=Release

0 commit comments

Comments
 (0)