GHA: use all cores for parallel compilation of Openblas on Windows #1329
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Protected | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- release** | |
pull_request: | |
paths: | |
- container/Dockerfile | |
# ensure all relevant files are still included in sdist | |
- python/sdist/MANIFEST.in | |
workflow_dispatch: | |
jobs: | |
check-secret: | |
runs-on: ubuntu-latest | |
outputs: | |
secrets-defined: ${{ steps.secret-check.outputs.defined }} | |
steps: | |
- name: Check for Secret availability | |
id: secret-check | |
shell: bash | |
run: | | |
if [ "${{ secrets.DOCKER_USERNAME }}" != '' ]; then | |
echo "defined=true" >> $GITHUB_OUTPUT; | |
else | |
echo "defined=false" >> $GITHUB_OUTPUT; | |
fi | |
dockerhub: | |
name: Deploy Docker Hub | |
needs: [check-secret] | |
if: needs.check-secret.outputs.secrets-defined == 'true' | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/checkout@v4 | |
- run: git archive -o container/amici.tar.gz --format=tar.gz HEAD | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: dweindl/amici | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
workdir: container/ | |
dockerfile: Dockerfile | |
tag_names: true | |
platforms: linux/amd64,linux/arm64 |