2020-02-24 18:02:34 +01:00
|
|
|
name: Hyperion CI Build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
######################
|
|
|
|
###### Linux #########
|
|
|
|
######################
|
2019-09-12 19:47:23 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Linux:
|
|
|
|
name: ${{ matrix.dockerName }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-04-20 18:46:51 +02:00
|
|
|
dockerTag: [ amd64, armv6hf, armv7hf, aarch64 ]
|
2019-09-12 19:47:23 +02:00
|
|
|
include:
|
|
|
|
- dockerTag: amd64
|
|
|
|
dockerName: Debian Stretch (AMD64)
|
|
|
|
platform: x11
|
|
|
|
- dockerTag: armv6hf
|
|
|
|
dockerName: Debian Stretch (Raspberry Pi v1 & ZERO)
|
|
|
|
platform: rpi
|
|
|
|
- dockerTag: armv7hf
|
|
|
|
dockerName: Debian Stretch (Raspberry Pi 2 & 3)
|
|
|
|
platform: rpi
|
|
|
|
- dockerTag: aarch64
|
|
|
|
dockerName: Debian Stretch (Generic AARCH64)
|
|
|
|
platform: amlogic
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
# build process
|
|
|
|
- name: Build packages
|
|
|
|
env:
|
|
|
|
DOCKER_TAG: ${{ matrix.dockerTag }}
|
|
|
|
DOCKER_NAME: ${{ matrix.dockerName }}
|
|
|
|
PLATFORM: ${{ matrix.platform }}
|
|
|
|
shell: bash
|
|
|
|
run: ./.ci/ci_build.sh
|
|
|
|
|
2020-02-24 18:02:34 +01:00
|
|
|
######################
|
|
|
|
###### macOS #########
|
|
|
|
######################
|
2019-09-12 19:47:23 +02:00
|
|
|
|
|
|
|
macOS:
|
|
|
|
name: macOS
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
# install dependencies
|
|
|
|
- name: Install dependencies
|
|
|
|
shell: bash
|
|
|
|
run: ./.ci/ci_install.sh
|
|
|
|
|
|
|
|
# build process
|
|
|
|
- name: Build packages
|
|
|
|
env:
|
|
|
|
PLATFORM: osx
|
|
|
|
shell: bash
|
|
|
|
run: ./.ci/ci_build.sh
|