Workflows cleaned and renamed appropriately. #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cygwin | |
on: [push, workflow_dispatch] | |
defaults: | |
run: | |
shell: bash -l {0} | |
env: | |
CHERE_INVOKING: 1 | |
CYGWIN_NOWINPATH: 1 | |
SHELLOPTS: igncr | |
LD_LIBRARY_PATH: /usr/local/lib | |
PKG_CONFIG_PATH: /usr/local/share/pkgconfig | |
jobs: | |
c: | |
name: windows-2022 / C | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cygwin/cygwin-install-action@v4 | |
with: | |
packages: cmake gcc-core make pkg-config | |
- run: ./run.sh | |
- run: cd tests && make && ./tests | |
python: | |
name: windows-2022 / Python | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cygwin/cygwin-install-action@v4 | |
with: | |
packages: gcc-core python3 python3-devel python3-pip | |
- run: python3 -m pip install . | |
- run: python3 examples/Python/thread-safe.py |