CI
This commit is contained in:
parent
f629084bc2
commit
f57e88238d
2 changed files with 67 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
# This is a basic workflow to help you get started with Actions
|
# This is a basic workflow to help you get started with Actions
|
||||||
|
|
||||||
name: Linux x64 Python 3.9
|
name: Linux x64
|
||||||
|
|
||||||
# Controls when the workflow will run
|
# Controls when the workflow will run
|
||||||
on:
|
on:
|
66
.github/workflows/windows.yml
vendored
Normal file
66
.github/workflows/windows.yml
vendored
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
# This is a basic workflow to help you get started with Actions
|
||||||
|
|
||||||
|
name: Windows
|
||||||
|
|
||||||
|
# Controls when the workflow will run
|
||||||
|
on:
|
||||||
|
# Triggers the workflow on push or pull request events but only for the master branch
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
|
jobs:
|
||||||
|
# This workflow contains a single job called "build"
|
||||||
|
build:
|
||||||
|
# The type of runner that the job will run on
|
||||||
|
runs-on: windows-2019
|
||||||
|
strategy:
|
||||||
|
# You can use PyPy versions in python-version.
|
||||||
|
# For example, pypy2 and pypy3
|
||||||
|
matrix:
|
||||||
|
python-version: [ 3.9 ]
|
||||||
|
steps:
|
||||||
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v2.2.2
|
||||||
|
with:
|
||||||
|
# Version range or exact version of a Python version to use, using SemVer's version range syntax.
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
# The target architecture (x86, x64) of the Python interpreter.
|
||||||
|
architecture: x64
|
||||||
|
|
||||||
|
# Runs a set of commands using the runners shell
|
||||||
|
- name: Build raylib
|
||||||
|
run: |
|
||||||
|
copy raylib-c\src\raylib.h raylib\raylib.h
|
||||||
|
cd raylib-c
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
|
||||||
|
msbuild ALL_BUILD.vxcproj
|
||||||
|
copy raylib\Debug\raylib.lib ..\..
|
||||||
|
cd ..\..
|
||||||
|
|
||||||
|
- name: Build raylib-python-cffi
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip3 install cffi
|
||||||
|
pip3 install wheel
|
||||||
|
del raylib\dynamic\*.so* raylib\dynamic\*.dll raylib\dynamic\*.dylib raylib\dynamic\32bit\*
|
||||||
|
python setup.py bdist_wheel
|
||||||
|
|
||||||
|
- name: Upload build Artifact wheel
|
||||||
|
uses: actions/upload-artifact@v2.2.4
|
||||||
|
with:
|
||||||
|
name: wheel
|
||||||
|
path: dist/*
|
||||||
|
|
Reference in a new issue