From c51da9174f626f6da2b3bf46a045099aeef72175 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 9 Feb 2022 13:59:08 -0800 Subject: [PATCH] Build Cygwin on windows-2022 with newer python. [buildall] --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a44cd2ab..75987fa3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,16 +86,15 @@ jobs: rrsync cygwin-build: - runs-on: windows-latest + runs-on: windows-2022 if: (github.event_name == 'schedule' || contains(github.event.head_commit.message, '[buildall]')) steps: - uses: actions/checkout@v2 - - uses: crazy-max/ghaction-chocolatey@v1.2.2 - with: - args: install -y --no-progress cygwin cyg-get + - name: cygwin + run: choco install -y --no-progress cygwin cyg-get - name: prep run: | - cyg-get make autoconf automake gcc-core attr libattr-devel python38 python38-pip libzstd-devel liblz4-devel libssl-devel libxxhash0 libxxhash-devel + cyg-get make autoconf automake gcc-core attr libattr-devel python39 python39-pip libzstd-devel liblz4-devel libssl-devel libxxhash0 libxxhash-devel curl.exe -o git-version.h https://gist.githubusercontent.com/WayneD/c11243fa374fc64d4e42f2855c8e3827/raw/rsync-git-version.h echo "C:/tools/cygwin/bin" >>$Env:GITHUB_PATH - name: commonmark -- 2.47.2