Skip to content

Commit

Permalink
abi3audit
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Sep 26, 2024
1 parent 779c958 commit b0f21a2
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,16 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
- name: Install
shell: bash -l {0}
run: conda install -y anaconda-client abi3audit
- name: Check
shell: bash -l {0}
run: abi3audit wheelhouse/*.whl -sS
- name: Upload
if: ${{ github.ref == 'refs/heads/master' }}
shell: bash -l {0}
run: |
conda install -y anaconda-client
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force -u openturns-wheels-nightly wheelhouse/*.whl
run: anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force -u openturns-wheels-nightly wheelhouse/*.whl

mingw:
runs-on: ubuntu-latest
Expand All @@ -35,12 +39,16 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
- name: Install
shell: bash -l {0}
run: conda install -y anaconda-client abi3audit
- name: Check
shell: bash -l {0}
run: abi3audit wheelhouse/*.whl -sS
- name: Upload
if: ${{ github.ref == 'refs/heads/master' }}
shell: bash -l {0}
run: |
conda install -y anaconda-client
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force -u openturns-wheels-nightly wheelhouse/*.whl
run: anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force -u openturns-wheels-nightly wheelhouse/*.whl

macos:
runs-on: macos-13
Expand All @@ -53,9 +61,13 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
- name: Install
shell: bash -l {0}
run: conda install -y anaconda-client abi3audit
- name: Check
shell: bash -l {0}
run: abi3audit wheelhouse/*.whl -sS
- name: Upload
if: ${{ github.ref == 'refs/heads/master' }}
shell: bash -l {0}
run: |
conda install -y anaconda-client
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force -u openturns-wheels-nightly wheelhouse/*.whl
run: anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force -u openturns-wheels-nightly wheelhouse/*.whl

0 comments on commit b0f21a2

Please sign in to comment.