2020-02-24 18:02:34 +01:00
|
|
|
name: Hyperion PR Build
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-09-12 19:47:23 +02:00
|
|
|
|
|
|
|
jobs:
|
2020-02-24 18:02:34 +01:00
|
|
|
|
|
|
|
######################
|
|
|
|
###### Linux #########
|
|
|
|
######################
|
|
|
|
|
2019-09-12 19:47:23 +02:00
|
|
|
Linux:
|
|
|
|
name: ${{ matrix.dockerName }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
dockerTag: [ amd64, i386, armv6hf, armv7hf, aarch64 ]
|
|
|
|
include:
|
|
|
|
- dockerTag: amd64
|
|
|
|
dockerName: Debian Stretch (AMD64)
|
|
|
|
platform: x11
|
|
|
|
- dockerTag: i386
|
|
|
|
dockerName: Debian Stretch (i386)
|
|
|
|
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
|
|
|
|
|
2020-02-24 18:02:34 +01:00
|
|
|
# Append PR number to version
|
|
|
|
- name: Append PR number to version
|
|
|
|
shell: bash
|
|
|
|
run: 'echo -n -PR#${{ github.event.pull_request.number }} >> version'
|
|
|
|
|
|
|
|
# Build packages
|
2019-09-12 19:47:23 +02:00
|
|
|
- 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
|
|
|
# Collecting deployable artifacts
|
|
|
|
- name: Collecting deployable artifacts
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir -p ${{ matrix.dockerTag }}
|
|
|
|
mv deploy/Hyperion-* ${{ matrix.dockerTag }}
|
2019-09-12 19:47:23 +02:00
|
|
|
|
2020-02-24 18:02:34 +01:00
|
|
|
# Upload artifacts
|
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.dockerTag }}.zip
|
|
|
|
path: ${{ matrix.dockerTag }}
|
|
|
|
|
|
|
|
######################
|
|
|
|
###### macOS #########
|
|
|
|
######################
|
2019-09-12 19:47:23 +02:00
|
|
|
|
|
|
|
macOS:
|
|
|
|
name: macOS
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
2020-02-24 18:02:34 +01:00
|
|
|
# Append PR number to version
|
|
|
|
- name: Append PR number to version
|
|
|
|
shell: bash
|
|
|
|
run: echo -n "-PR#${{ github.event.pull_request.number }}" >> version
|
|
|
|
|
|
|
|
# Install dependencies
|
2019-09-12 19:47:23 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
shell: bash
|
|
|
|
run: ./.ci/ci_install.sh
|
|
|
|
|
2020-02-24 18:02:34 +01:00
|
|
|
# Build packages
|
2019-09-12 19:47:23 +02:00
|
|
|
- name: Build packages
|
|
|
|
env:
|
|
|
|
PLATFORM: osx
|
|
|
|
shell: bash
|
|
|
|
run: ./.ci/ci_build.sh
|
|
|
|
|
2020-02-24 18:02:34 +01:00
|
|
|
# Collecting deployable artifacts
|
|
|
|
- name: Collecting deployable artifacts
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir -p macOS
|
|
|
|
mv build/Hyperion-* macOS
|
2019-09-12 19:47:23 +02:00
|
|
|
|
2020-02-24 18:02:34 +01:00
|
|
|
# Upload artifacts
|
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: macOS.zip
|
|
|
|
path: macOS
|