Skip to content

Commit

Permalink
Add catchsegv install to test and deploy jobs in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonwillard committed Jan 11, 2023
1 parent 41584f2 commit 93285a4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
matrix:
scipy-version: [">=0.16,<1.4", ">=1.4,<=1.7.3"]
steps:
- name: Install glibc-tools
shell: bash -l {0}
run: |
if [[ $(uname) == Linux ]]; then
sudo apt-get install glibc-tools
fi
- name: Checkout
uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -68,6 +74,12 @@ jobs:
runs-on: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- name: Install glibc-tools
shell: bash -l {0}
run: |
if [[ $(uname) == Linux ]]; then
sudo apt-get install glibc-tools
fi
- name: Download build artifact
uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -99,6 +111,12 @@ jobs:
env:
AC_LABEL: dev
steps:
- name: Install glibc-tools
shell: bash -l {0}
run: |
if [[ $(uname) == Linux ]]; then
sudo apt-get install glibc-tools
fi
- name: Download build artifact
uses: actions/download-artifact@v2
with:
Expand Down

0 comments on commit 93285a4

Please sign in to comment.