Skip to content

Update python dependencies (#1595) #1303

Update python dependencies (#1595)

Update python dependencies (#1595) #1303

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- "update-dependencies-manylinux1-pr"
paths:
- ".github/workflows/build.yml"
- "docker/**"
- "*.sh"
pull_request:
paths:
- ".github/workflows/build.yml"
- "docker/**"
- "build.sh"
jobs:
build:
name: manylinux1_${{ matrix.platform }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- platform: "i686"
- platform: "x86_64"
env:
PLATFORM: ${{ matrix.platform }}
COMMIT_SHA: ${{ github.sha }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: ./build.sh
- name: Deploy
if: github.event_name == 'push' && github.ref == 'refs/heads/manylinux1' && github.repository == 'pypa/manylinux'
run: ./deploy.sh
env:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}