Skip to content

Commit

Permalink
Fix CI on Mac OS
Browse files Browse the repository at this point in the history
  • Loading branch information
purplesyringa committed May 24, 2024
1 parent c704a39 commit e1412e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- run: pip3 install pyyaml
- run: pip3 install -r requirements.txt
- run: python3 test.py
linux-i386:
runs-on: ubuntu-22.04
Expand All @@ -23,8 +24,9 @@ jobs:
sudo apt-get install g++-i686-linux-gnu
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- run: pip3 install pyyaml
- run: pip3 install -r requirements.txt
- run: python3 test.py --cross i386
windows-mingw:
runs-on: windows-latest
Expand Down Expand Up @@ -71,8 +73,9 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- run: pip3 install pyyaml pywin32
- run: pip3 install -r requirements.txt
- run: python3 test.py --msvc x86_64
windows-msvc-i386:
runs-on: windows-latest
Expand All @@ -88,6 +91,7 @@ jobs:
arch: x86
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- run: pip3 install pyyaml pywin32
- run: pip3 install -r requirements.txt
- run: python3 test.py --msvc i386
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pyyaml
pywin32; sys_platform == 'win32'

0 comments on commit e1412e3

Please sign in to comment.