2020-05-27 02:42:40 +00:00
|
|
|
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
|
2020-05-27 21:37:43 +00:00
|
|
|
name: Build
|
2020-05-27 02:42:40 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-05-27 03:04:45 +00:00
|
|
|
node-version: [12.x]
|
2020-05-29 14:02:54 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2020-05-27 23:01:44 +00:00
|
|
|
|
2020-05-27 21:19:54 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-05-27 02:42:40 +00:00
|
|
|
|
|
|
|
steps:
|
2020-05-27 03:38:29 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-27 02:42:40 +00:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: npm ci
|
2020-06-19 20:32:32 +00:00
|
|
|
- run: npm run lint
|
2020-05-27 02:42:40 +00:00
|
|
|
- run: npm run build --if-present
|
2020-05-27 21:18:37 +00:00
|
|
|
- name: Upload .deb Artifact
|
2020-05-27 03:23:58 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-05-27 21:18:37 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2020-05-27 03:23:58 +00:00
|
|
|
with:
|
2020-05-27 03:50:26 +00:00
|
|
|
name: freetube-vue_0.8.0_amd64.deb
|
2020-05-27 03:23:58 +00:00
|
|
|
path: build/freetube-vue_0.8.0_amd64.deb
|
2020-05-27 21:18:37 +00:00
|
|
|
- name: Upload AppImage Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
with:
|
|
|
|
name: freetube-vue_0.8.0_amd64.AppImage
|
|
|
|
path: build/FreeTube-Vue-0.8.0.AppImage
|
2020-05-27 22:16:02 +00:00
|
|
|
- name: Upload .rpm Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
with:
|
|
|
|
name: freetube-vue_0.8.0_amd64.rpm
|
|
|
|
path: build/freetube-vue-0.8.0.x86_64.rpm
|
2020-07-12 02:19:37 +00:00
|
|
|
- name: Build with ARM64
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2020-07-12 02:33:26 +00:00
|
|
|
uses: uraimo/run-on-arch-action@v1.0.9
|
|
|
|
with:
|
2020-07-12 02:47:38 +00:00
|
|
|
architecture: aarch64
|
2020-07-12 02:33:26 +00:00
|
|
|
distribution: ubuntu18.04
|
|
|
|
run: |
|
2020-07-12 02:47:38 +00:00
|
|
|
apt update
|
|
|
|
curl -sL https://deb.nodesource.com/setup_12.x | -E bash -
|
|
|
|
apt install -y nodejs
|
|
|
|
apt install -y build-essential
|
2020-07-12 03:04:10 +00:00
|
|
|
apt install npm
|
2020-07-12 02:33:26 +00:00
|
|
|
npm ci
|
|
|
|
npm run lint
|
|
|
|
npm run build --if-present
|
2020-07-12 02:19:37 +00:00
|
|
|
- name: Upload Linux ARM64 .deb Artifact
|
2020-05-27 23:01:44 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
with:
|
2020-07-12 02:19:37 +00:00
|
|
|
name: freetube-vue_0.8.0_arm64.deb
|
|
|
|
path: build/freetube-vue_0.8.0_arm64.deb
|
2020-05-27 21:59:38 +00:00
|
|
|
- name: Upload Windows .exe Artifact
|
2020-05-27 21:18:37 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
with:
|
2020-05-27 23:01:44 +00:00
|
|
|
name: freetube-vue-0.8.0-win-x64-portable
|
2020-05-27 21:36:50 +00:00
|
|
|
path: build/FreeTube-Vue-0.8.0-win.zip
|
2020-05-27 21:59:38 +00:00
|
|
|
- name: Upload Windows .zip Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
with:
|
2020-05-27 23:01:44 +00:00
|
|
|
name: freetube-vue-0.8.0-setup-x64.exe
|
2020-05-27 21:59:38 +00:00
|
|
|
path: build/FreeTube-Vue Setup 0.8.0.exe
|
2020-05-29 14:02:54 +00:00
|
|
|
- name: Upload Mac .dmg Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: startsWith(matrix.os, 'macos')
|
|
|
|
with:
|
2020-05-29 15:04:24 +00:00
|
|
|
name: freetube-vue-0.8.0-mac.dmg
|
|
|
|
path: build/FreeTube-Vue-0.8.0.dmg
|