Skip to content

Commit

Permalink
Install Bison on each platform
Browse files Browse the repository at this point in the history
  • Loading branch information
certik committed Jan 14, 2022
1 parent 2e85263 commit 99091ff
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,22 @@ jobs:
auto-update-conda: true
environment-file: ci/environment.yml
python-version: ${{ matrix.python-version }}

- name: Install Windows Conda Packages
if: contains(matrix.os, 'windows')
run: conda install m2-bison=3.4

- name: Install Linux / macOS Conda Packages
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
run: conda install bison=3.4

- name: Conda info
shell: bash -l {0}
run: conda info

- name: Conda list
shell: pwsh
run: conda list

- name: Build and test
run: xonsh ci/build.xsh

0 comments on commit 99091ff

Please sign in to comment.