mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
884c68b239
* Add Documentation * git ignore dist and node_modules filder * Update dependencies * Add GH Actions to test build * Update header to latest Quasar spec * resolve c&p issue * Update splashscreens * Add docs deploy
143 lines
3.4 KiB
YAML
143 lines
3.4 KiB
YAML
name: Hyperion PR Build
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
|
|
######################
|
|
###### Linux #########
|
|
######################
|
|
|
|
Linux:
|
|
name: ${{ matrix.dockerName }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
dockerTag: [ amd64, armv6hf, armv7hf, aarch64 ]
|
|
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:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
with:
|
|
submodules: true
|
|
|
|
# Append PR number to version
|
|
- name: Append PR number to version
|
|
shell: bash
|
|
run: |
|
|
tr -d '\n' < version > temp && mv temp version
|
|
echo -n -PR#${{ github.event.pull_request.number }} >> version
|
|
|
|
# Build packages
|
|
- name: Build packages
|
|
env:
|
|
DOCKER_TAG: ${{ matrix.dockerTag }}
|
|
DOCKER_NAME: ${{ matrix.dockerName }}
|
|
PLATFORM: ${{ matrix.platform }}
|
|
shell: bash
|
|
run: ./.ci/ci_build.sh
|
|
|
|
# Collecting deployable artifacts
|
|
- name: Collecting deployable artifacts
|
|
shell: bash
|
|
run: |
|
|
mkdir -p ${{ matrix.dockerTag }}
|
|
mv deploy/*.tar.gz ${{ matrix.dockerTag }}
|
|
if: matrix.dockerTag != 'aarch64'
|
|
|
|
# Upload artifacts
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ${{ matrix.dockerTag }}.zip
|
|
path: ${{ matrix.dockerTag }}
|
|
if: matrix.dockerTag != 'aarch64'
|
|
|
|
######################
|
|
###### macOS #########
|
|
######################
|
|
|
|
macOS:
|
|
name: macOS
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
with:
|
|
submodules: true
|
|
|
|
# Append PR number to version
|
|
- name: Append PR number to version
|
|
shell: bash
|
|
run: |
|
|
tr -d '\n' < version > temp && mv temp version
|
|
echo -n "-PR#${{ github.event.pull_request.number }}" >> version
|
|
|
|
# Install dependencies
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: ./.ci/ci_install.sh
|
|
|
|
# Build packages
|
|
- name: Build packages
|
|
env:
|
|
PLATFORM: osx
|
|
shell: bash
|
|
run: ./.ci/ci_build.sh
|
|
|
|
# Collecting deployable artifacts
|
|
- name: Collecting deployable artifacts
|
|
shell: bash
|
|
run: |
|
|
mkdir -p macOS
|
|
mv build/*.tar.gz macOS
|
|
|
|
# Upload artifacts
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: macOS.zip
|
|
path: macOS
|
|
|
|
######################
|
|
#### Documentation ###
|
|
######################
|
|
|
|
docs:
|
|
name: Documentation
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: docs
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
# Install dependencies
|
|
- name: Setup node 12
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12'
|
|
|
|
# Build Docs
|
|
- name: Build docs
|
|
run: |
|
|
npm install -g yarn
|
|
yarn install
|
|
yarn docs:build
|