Skip to content

Commit

Permalink
adds windows as platform to the CI testsuite
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Sep 11, 2024
1 parent 9ffcc8e commit 0e88f44
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@ jobs:
if: success()
strategy:
matrix:
os: [ubuntu-latest, macos-13, macos-14]
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
py-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: ubuntu-latest
cvc5-plat: "linux"
- os: windows-latest
cvc5-plat: "windows"
- os: macos-13
brew: "/usr/local"
cvc5-plat: "osx13"
Expand All @@ -54,6 +56,20 @@ jobs:
brew install python@${{ matrix.py-version }}
echo "${{ matrix.brew }}/opt/python@${{ matrix.py-version }}/libexec/bin" >> $GITHUB_PATH
python${{ matrix.py-version }} -m ensurepip
# Step to install Scoop
- name: Install Scoop, GNU Make, and Find on Windows
if: matrix.os == 'windows-latest'
run: |
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
# Substep: Install GNU Make and Find
scoop install make
scoop install findutils
# Substep: Check Make and Find versions
make --version
find --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 0e88f44

Please sign in to comment.