Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/cygwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
id: restore-cache
with:
# should use 'pip3 cache dir' to discover this path
path: C:\cygwin\home\runneradmin\.cache\pip
path: \cygwin\home\runneradmin\.cache\pip
key: cygwin-pip-${{ github.run_number }}
restore-keys: cygwin-pip-

Expand All @@ -60,6 +60,7 @@ jobs:
- uses: cygwin/cygwin-install-action@v5
with:
platform: ${{ matrix.ARCH }}
install-dir: \cygwin
packages: |
cmake
gcc-fortran
Expand Down Expand Up @@ -88,12 +89,12 @@ jobs:
run: |
export PATH=/usr/bin:/usr/local/bin:$(cygpath ${SYSTEMROOT})/system32
python3 -m pip --disable-pip-version-check install gcovr fastjsonschema pefile pytest pytest-subtests pytest-xdist
shell: C:\cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'
shell: \cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'

- uses: actions/cache/save@v4
with:
# should use 'pip3 cache dir' to discover this path
path: C:\cygwin\home\runneradmin\.cache\pip
path: \cygwin\home\runneradmin\.cache\pip
key: cygwin-pip-${{ github.run_number }}

- name: Run tests
Expand All @@ -104,7 +105,7 @@ jobs:
# Cygwin's static boost installation is broken (some static library
# variants such as boost_thread are not present)
SKIP_STATIC_BOOST: 1
shell: C:\cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'
shell: \cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'

- uses: actions/upload-artifact@v4
with:
Expand Down
Loading