229 lines
6.4 KiB
YAML
229 lines
6.4 KiB
YAML
name: Release&Nigthly
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- r_[0-9]+
|
|
schedule:
|
|
- cron: '0 1 * * *'
|
|
|
|
jobs:
|
|
Linux:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- native_static
|
|
- native_mixed
|
|
- native_dyn
|
|
- wasm
|
|
- armv6_static
|
|
- armv6_mixed
|
|
- armv8_static
|
|
- armv8_mixed
|
|
- aarch64_static
|
|
- aarch64_mixed
|
|
- aarch64_musl_static
|
|
- aarch64_musl_mixed
|
|
- x86-64_musl_static
|
|
- x86-64_musl_mixed
|
|
- i586_static
|
|
- android_arm
|
|
- android_arm64
|
|
- android_x86
|
|
- android_x86_64
|
|
image_variant: ['focal']
|
|
include:
|
|
- target: native_mixed
|
|
image_variant: bionic
|
|
- target: aarch64_mixed
|
|
image_variant: bionic
|
|
- target: win32_static
|
|
image_variant: f35
|
|
env:
|
|
HOME: /home/runner
|
|
SSH_KEY: /tmp/id_rsa
|
|
runs-on: ubuntu-22.04
|
|
container:
|
|
image: "ghcr.io/kiwix/kiwix-build_ci_${{matrix.image_variant}}:38"
|
|
options: "--device /dev/fuse --privileged"
|
|
steps:
|
|
- name: Checkout code
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
git clone https://github.com/${REP}
|
|
cd ./${REP##*/}
|
|
git checkout --force ${GITHUB_SHA}
|
|
pip3 install --user --no-deps .
|
|
env:
|
|
REP: ${{github.repository}}
|
|
- name: secret
|
|
shell: bash
|
|
run: |
|
|
echo "${{secrets.ssh_key}}" > $SSH_KEY
|
|
chmod 600 $SSH_KEY
|
|
- name: Ensure base deps
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
kiwix-build/.github/scripts/ensure_base_deps.py
|
|
env:
|
|
PLATFORM_TARGET: ${{matrix.target}}
|
|
- name: Build release
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
kiwix-build/.github/scripts/build_release_nightly.py
|
|
env:
|
|
PLATFORM_TARGET: ${{matrix.target}}
|
|
BINTRAY_USER: kiwix
|
|
BINTRAY_PASS: ${{secrets.bintray_pass}}
|
|
- name: Upload failure logs
|
|
if: failure()
|
|
run: $HOME/kiwix-build/.github/scripts/upload_failure_logs.sh
|
|
env:
|
|
PLATFORM_TARGET: ${{matrix.target}}
|
|
|
|
Flatpak:
|
|
strategy:
|
|
fail-fast: false
|
|
env:
|
|
HOME: /home/runner
|
|
SSH_KEY: /tmp/id_rsa
|
|
PLATFORM_TARGET: flatpak
|
|
OS_NAME: focal
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout code
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
git clone https://github.com/${REP}
|
|
cd ./${REP##*/}
|
|
git checkout --force ${GITHUB_SHA}
|
|
pip3 install --user --no-deps .
|
|
env:
|
|
REP: ${{github.repository}}
|
|
- name: Install flatpak tools
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install flatpak-builder ninja-build meson
|
|
- name: secret
|
|
shell: bash
|
|
run: |
|
|
echo "${{secrets.ssh_key}}" > $SSH_KEY
|
|
chmod 600 $SSH_KEY
|
|
- name: Ensure base deps
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
kiwix-build/.github/scripts/ensure_base_deps.py
|
|
- name: Build release
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
kiwix-build/.github/scripts/build_release_nightly.py
|
|
- name: Upload failure logs
|
|
if: failure()
|
|
run: $HOME/kiwix-build/.github/scripts/upload_failure_logs.sh
|
|
|
|
Macos:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- native_dyn
|
|
- native_static
|
|
- native_mixed
|
|
- macOS_arm64_static
|
|
- macOS_arm64_mixed
|
|
runs-on: macos-11
|
|
env:
|
|
SSH_KEY: /tmp/id_rsa
|
|
OS_NAME: macos
|
|
CERTIFICATE: /tmp/wmch-devid.p12
|
|
SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
|
|
KEYCHAIN: /Users/runner/build.keychain-db
|
|
KEYCHAIN_PASSWORD: mysecretpassword
|
|
KEYCHAIN_PROFILE: build-profile
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Setup python 3.8
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Install packages
|
|
run:
|
|
brew install pkg-config ninja automake autoconf
|
|
- name: Install python modules
|
|
run: |
|
|
pip3 install meson pytest requests distro
|
|
pip3 install --no-deps $GITHUB_WORKSPACE
|
|
- name: secret
|
|
shell: bash
|
|
run: |
|
|
echo "${{secrets.ssh_key}}" > $SSH_KEY
|
|
chmod 600 $SSH_KEY
|
|
- name: install Apple certificate
|
|
shell: bash
|
|
run: |
|
|
echo "${{ secrets.APPLE_SIGNING_CERTIFICATE }}" | base64 --decode -o $CERTIFICATE
|
|
security create-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN
|
|
security default-keychain -s $KEYCHAIN
|
|
security set-keychain-settings $KEYCHAIN
|
|
security unlock-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN
|
|
security import $CERTIFICATE -k $KEYCHAIN -P "${{ secrets.APPLE_SIGNING_P12_PASSWORD }}" -A -T "/usr/bin/codesign"
|
|
rm $CERTIFICATE
|
|
security set-key-partition-list -S apple-tool:,apple: -s -k $KEYCHAIN_PASSWORD $KEYCHAIN
|
|
security find-identity -v $KEYCHAIN
|
|
xcrun notarytool store-credentials \
|
|
--apple-id "${{ secrets.APPLE_SIGNING_ALTOOL_USERNAME }}" \
|
|
--password "${{ secrets.APPLE_SIGNING_ALTOOL_PASSWORD }}" \
|
|
--team-id "${{ secrets.APPLE_SIGNING_TEAM }}" \
|
|
--validate \
|
|
--keychain $KEYCHAIN \
|
|
$KEYCHAIN_PROFILE
|
|
- name: Ensure base deps
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
$GITHUB_WORKSPACE/.github/scripts/ensure_base_deps.py
|
|
env:
|
|
PLATFORM_TARGET: ${{matrix.target}}
|
|
- name: Build release
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
$GITHUB_WORKSPACE/.github/scripts/build_release_nightly.py
|
|
env:
|
|
PLATFORM_TARGET: ${{matrix.target}}
|
|
- name: Upload failure logs
|
|
if: failure()
|
|
run: $GITHUB_WORKSPACE/.github/scripts/upload_failure_logs.sh
|
|
env:
|
|
PLATFORM_TARGET: ${{matrix.target}}
|
|
|
|
|
|
Trigger_Docker:
|
|
needs: [Linux]
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
PLATFORM_TARGET: LINUX_DOCKER_TRIGGER
|
|
OS_NAME: LINUX_DOCKER_TRIGGER
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Install python modules
|
|
shell: bash
|
|
run: |
|
|
pip3 install --user --no-deps $GITHUB_WORKSPACE
|
|
- name: Trigger docker workflow
|
|
shell: bash
|
|
run: |
|
|
cd $HOME
|
|
$GITHUB_WORKSPACE/.github/scripts/trigger_docker_workflow.py
|
|
env:
|
|
GITHUB_PAT: ${{secrets.DOCKER_TRIGGER_GITHUB_PAT}}
|