mirror of https://github.com/kivy/kivy.git
144 lines
4.2 KiB
YAML
144 lines
4.2 KiB
YAML
name: Windows wheels
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
create:
|
|
schedule:
|
|
- cron: '23 1 * * *'
|
|
|
|
env:
|
|
KIVY_SPLIT_EXAMPLES: 1
|
|
SERVER_IP: '159.203.106.198'
|
|
GST_REGISTRY: '~/registry.bin'
|
|
KIVY_GL_BACKEND: 'angle_sdl2'
|
|
|
|
jobs:
|
|
windows_wheels:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
python: [ '3.6', '3.7', '3.8' ]
|
|
arch: ['x64', 'x86']
|
|
if: github.event_name == 'schedule' || (github.event_name == 'create' && github.event.ref_type == 'tag') || contains(github.event.head_commit.message, '[build wheel]') || contains(github.event.head_commit.message, '[build wheel win]') || contains(github.event.pull_request.title, '[build wheel]') || contains(github.event.pull_request.title, '[build wheel win]')
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
architecture: ${{ matrix.arch }}
|
|
- name: Install dependencies
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Install-kivy-test-run-win-deps
|
|
Install-kivy-test-run-pip-deps
|
|
- name: Generate sdist/kivy-examples
|
|
if: matrix.arch == 'x64' && matrix.python == '3.8'
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Generate-sdist
|
|
- name: Install Kivy
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Install-kivy
|
|
- name: Make wheels
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Generate-windows-wheels
|
|
- name: Fix wheel names
|
|
if: github.event.ref_type != 'tag'
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Rename-windows-wheels
|
|
- name: Install MSYS2
|
|
run: choco install msys2
|
|
- name: Upload wheels to server
|
|
if: github.event_name != 'pull_request'
|
|
env:
|
|
UBUNTU_UPLOAD_KEY: ${{ secrets.UBUNTU_UPLOAD_KEY }}
|
|
MSYSTEM: MINGW64
|
|
CHERE_INVOKING: 1
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Upload-windows-wheels-to-server -ip "$env:SERVER_IP"
|
|
- name: Upload wheels as artifact
|
|
uses: actions/upload-artifact@master
|
|
with:
|
|
name: windows_wheels
|
|
path: dist
|
|
- name: Publish to PyPI
|
|
if: github.event_name == 'create' && github.event.ref_type == 'tag'
|
|
env:
|
|
TWINE_USERNAME: "__token__"
|
|
TWINE_PASSWORD: ${{ secrets.pypi_password }}
|
|
run: |
|
|
twine upload dist/*
|
|
- name: Upload to GitHub Release
|
|
uses: softprops/action-gh-release@78c309ef59fdb9557cd6574f2e0be552936ed728
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.github_release }}
|
|
with:
|
|
files: dist/*
|
|
draft: true
|
|
|
|
windows_wheel_test:
|
|
runs-on: windows-latest
|
|
needs: windows_wheels
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.x
|
|
- uses: actions/download-artifact@v1
|
|
with:
|
|
name: windows_wheels
|
|
- name: Install Kivy Wheel
|
|
run: |
|
|
mv windows_wheels dist
|
|
. .\.ci\windows_ci.ps1
|
|
Install-kivy-wheel
|
|
- name: Test Kivy Wheel
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Test-kivy-installed
|
|
|
|
windows_sdist_test:
|
|
runs-on: windows-latest
|
|
needs: windows_wheels
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.x
|
|
- uses: actions/download-artifact@v1
|
|
with:
|
|
name: windows_wheels
|
|
- name: Install Kivy sdist
|
|
env:
|
|
KIVY_SPLIT_EXAMPLES: 0
|
|
run: |
|
|
mv windows_wheels dist
|
|
. .\.ci\windows_ci.ps1
|
|
Install-kivy-sdist
|
|
- name: Test Kivy sdist
|
|
run: |
|
|
. .\.ci\windows_ci.ps1
|
|
Test-kivy-installed
|
|
|
|
always_job:
|
|
name: Always run job
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Always run
|
|
run: |
|
|
echo "This is run to prevent the workflow from showing an error if the wheels job is not run and no jobs run is an error."
|
|
echo "See https://github.community/t5/GitHub-Actions/Workflow-is-failing-if-no-job-can-be-ran-due-to-condition/m-p/38085"
|
|
- name: Dump GitHub context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|