Update build_windows.yml #101
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: Build Android | |
on: | |
push: | |
# Manual run | |
workflow_dispatch: | |
# Release-related code borrowed from | |
# https://github.com/actions/create-release/issues/14#issuecomment-555379810 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./python3-android | |
strategy: | |
matrix: | |
env: | |
- { ARCH: arm, API: 21, PYVER: 3.7.16 } | |
- { ARCH: arm64, API: 21, PYVER: 3.7.16 } | |
- { ARCH: arm, API: 21, PYVER: 3.8.16 } | |
- { ARCH: arm64, API: 21, PYVER: 3.8.16 } | |
- { ARCH: arm, API: 21, PYVER: 3.9.16 } | |
- { ARCH: arm64, API: 21, PYVER: 3.9.16 } | |
- { ARCH: arm, API: 21, PYVER: 3.10.7 } | |
- { ARCH: arm64, API: 21, PYVER: 3.10.7 } | |
- { ARCH: arm, API: 21, PYVER: 3.11.2 } | |
- { ARCH: arm64, API: 21, PYVER: 3.11.2 } | |
- { ARCH: arm, API: 21, PYVER: 3.12.0 } | |
- { ARCH: arm64, API: 21, PYVER: 3.12.0 } | |
steps: | |
- name: Checkout main repo | |
uses: actions/checkout@v2 | |
- name: Update scripts permission | |
run: | | |
find -type f -iname "*.sh" -exec chmod +x {} \; | |
find ./Android -type f -iname "*.py" -exec chmod +x {} \; | |
- name: Building | |
run: | | |
docker run --rm -v $(pwd):/python3-android \ | |
--env ARCH=${{ matrix.env.ARCH }} \ | |
--env ANDROID_API=${{ matrix.env.API }} \ | |
--env PYVER=${{ matrix.env.PYVER }} \ | |
python:${{ matrix.env.PYVER }}-slim /python3-android/docker-build.sh | |
- name: Create package | |
id: create_package | |
run: | | |
cd embedabble | |
package_filename=python3-android-${{ matrix.env.PYVER }}-${{ matrix.env.ARCH }}.zip | |
sudo 7z a -tzip $package_filename * -r | |
echo ::set-output name=package_filename::$package_filename | |
- name: Save build | |
uses: actions/upload-artifact@v2 | |
with: | |
path: python3-android/embedabble/${{ steps.create_package.outputs.package_filename }} | |
if-no-files-found: error | |
- name: Publish to Digital Ocean | |
uses: BetaHuhn/do-spaces-action@v2 | |
with: | |
access_key: ${{ secrets.ACCESS_KEY}} | |
secret_key: ${{ secrets.SECRET_KEY }} | |
space_name: ${{ secrets.SPACE_NAME }} | |
space_region: ${{ secrets.SPACE_REGION }} | |
source: python3-android/embedabble/${{ steps.create_package.outputs.package_filename }} |