Skip to content

Commit

Permalink
Install and test binary config on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Mar 21, 2024
1 parent 89f6d31 commit 13b02aa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,13 @@ jobs:
source ~/conda/etc/profile.d/conda.sh &&
conda activate base &&
pyver=${{ matrix.python }} &&
sed -i -e "s/python=3\.[[:digit:]]\+.*/python=${pyver}/" ./config/default/packages_conda.txt &&
sed -i -E "s/python=3\.[[:digit:]]+.*/python=${pyver}/" ./config/default/packages_conda.txt &&
cat ./config/default/packages_conda.txt &&
./soconda.sh -e soconda -v CI
if [ ${{ matrix.os }} = "macos-latest" ]; then \
./soconda.sh -e soconda -v CI -c binary; \
else \
./soconda.sh -e soconda -v CI -c default; \
fi
- name: Run Tests
run: |
Expand Down

0 comments on commit 13b02aa

Please sign in to comment.