Skip to content

Commit

Permalink
Final touches for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Mar 4, 2024
1 parent 85c76b9 commit 73ab250
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/nmodl-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,14 @@ jobs:
run: |
brew install flex bison
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
with:
fetch: 0

# Used to host cibuildwheel
- uses: actions/setup-python@v3
- name: Set up Python
uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.5
Expand All @@ -58,10 +62,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
with:
fetch: 0

# Used to host cibuildwheel
- uses: actions/setup-python@v3
- name: Set up Python
uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.5
Expand Down Expand Up @@ -103,6 +111,5 @@ jobs:

- name: Test manylinux Wheel with Python ${{ matrix.python_version }}
run: |
set -eux
dotless_version="$(echo "${{ matrix.python_version }}" | tr -d '.')"
find ${{ github.workspace }} -name "*cp${dotless_version}-manylinux*.whl" -exec bash packaging/test_wheel.bash python${{ matrix.python_version }} {} \;

0 comments on commit 73ab250

Please sign in to comment.