Skip to content

Commit

Permalink
try a range of OS versions and architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
j-wags committed Oct 22, 2024
1 parent 574b89f commit 7233e0d
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,15 @@ jobs:
fail-fast: false
matrix:
os:
#- macOS-latest
- macOS-14
- macOS-14-large
- macOS-13
- macOS-13-xlarge
- macOS-12
- ubuntu-22.04
- ubuntu-20.04
python-version:
- "3.8"
#- "3.8"
- "3.9"

env:
Expand Down Expand Up @@ -68,9 +72,24 @@ jobs:
if [[ "$CI_OS" == 'ubuntu-20.04' ]]; then
wget https://dasher.wustl.edu/tinker/downloads/bin-linux-8.8.3.tar.gz -O tinker.tar.gz
fi
if [[ "$CI_OS" == 'ubuntu-22.04' ]]; then
wget https://dasher.wustl.edu/tinker/downloads/bin-linux-8.8.3.tar.gz -O tinker.tar.gz
fi
if [[ "$CI_OS" == 'macOS-12' ]]; then
wget https://dasher.wustl.edu/tinker/downloads/bin-macos-8.8.3.tar.gz -O tinker.tar.gz
fi
if [[ "$CI_OS" == 'macOS-13' ]]; then
wget https://dasher.wustl.edu/tinker/downloads/bin-macos-8.8.3.tar.gz -O tinker.tar.gz
fi
if [[ "$CI_OS" == 'macOS-13-xlarge' ]]; then
wget https://dasher.wustl.edu/tinker/downloads/bin-macos-8.8.3.tar.gz -O tinker.tar.gz
fi
if [[ "$CI_OS" == 'macOS-14' ]]; then
wget https://dasher.wustl.edu/tinker/downloads/bin-macos-8.8.3.tar.gz -O tinker.tar.gz
fi
if [[ "$CI_OS" == 'macOS-14-large' ]]; then
wget https://dasher.wustl.edu/tinker/downloads/bin-macos-8.8.3.tar.gz -O tinker.tar.gz
fi
tar xvzf tinker.tar.gz &> untar.log
mkdir -p $GITHUB_WORKSPACE/opt/tinker/8.8.3
Expand Down

0 comments on commit 7233e0d

Please sign in to comment.