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:
|
2020-10-02 01:34:06 +00:00
|
|
|
branches: [ master, development ]
|
2020-05-27 02:42:40 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-05-27 03:04:45 +00:00
|
|
|
node-version: [12.x]
|
2020-10-19 20:00:21 +00:00
|
|
|
runtime: [ linux-x64, linux-arm64, win-x64, osx-x64 ]
|
|
|
|
include:
|
|
|
|
- runtime: linux-x64
|
|
|
|
os: ubuntu-latest
|
|
|
|
|
|
|
|
- runtime: linux-arm64
|
|
|
|
os: ubuntu-latest
|
|
|
|
|
|
|
|
- runtime: osx-x64
|
|
|
|
os: macOS-latest
|
|
|
|
|
|
|
|
- runtime: win-x64
|
|
|
|
os: windows-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-10-21 21:10:19 +00:00
|
|
|
|
2020-10-05 15:12:08 +00:00
|
|
|
- name: Install libarchive-tools
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-10-05 15:15:13 +00:00
|
|
|
run: sudo apt -y install libarchive-tools
|
2020-10-21 21:10:19 +00:00
|
|
|
|
2020-10-19 20:00:21 +00:00
|
|
|
- name: Build x64 with Node.js ${{ matrix.node-version}}
|
|
|
|
if: contains(matrix.runtime, 'x64')
|
|
|
|
run: npm run build --if-present
|
2020-10-21 21:10:19 +00:00
|
|
|
|
2020-07-21 21:43:52 +00:00
|
|
|
- name: Build ARM64 with Node.js ${{ matrix.node-version}}
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
2020-07-21 21:43:52 +00:00
|
|
|
run: npm run build:arm --if-present
|
2020-10-21 21:10:19 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload Linux .zip x64 Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-07-21 23:03:17 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_linux_portable_x64
|
|
|
|
path: build/freetube-0.9.2.zip
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload Linux .zip ARM Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
2020-07-21 23:03:17 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_linux_portable_arm64
|
|
|
|
path: build/freetube-0.9.2-arm64.zip
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload .deb x64 Artifact
|
2020-05-27 03:23:58 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-05-27 03:23:58 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_amd64.deb
|
|
|
|
path: build/freetube_0.9.2_amd64.deb
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload .deb ARM Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
2020-07-21 23:03:17 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_arm64.deb
|
|
|
|
path: build/freetube_0.9.2_arm64.deb
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload AppImage x64 Artifact
|
2020-05-27 21:18:37 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-05-27 21:18:37 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_amd64.AppImage
|
|
|
|
path: build/FreeTube-0.9.2.AppImage
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload AppImage ARM Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
2020-07-21 23:03:17 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_arm64.AppImage
|
|
|
|
path: build/FreeTube-0.9.2-arm64.AppImage
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload .rpm x64 Artifact
|
2020-05-27 22:16:02 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-05-27 22:16:02 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_amd64.rpm
|
|
|
|
path: build/freetube-0.9.2.x86_64.rpm
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload .rpm ARM Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
2020-07-21 23:03:17 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_arm64.rpm
|
|
|
|
path: build/freetube-0.9.2.arm64.rpm
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload Alpine .apk x64 Artifact
|
2020-07-21 16:45:07 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-07-21 16:45:07 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_alpine_amd64.apk
|
|
|
|
path: build/freetube-0.9.2.apk
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-21 23:03:17 +00:00
|
|
|
- name: Upload Alpine .apk ARM Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
2020-07-21 23:03:17 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_alpine_arm64.apk
|
|
|
|
path: build/freetube-0.9.2-arm64.apk
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-10-05 14:46:09 +00:00
|
|
|
- name: Upload Pacman .pacman x64 Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-10-05 14:46:09 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_pacman_amd64.pacman
|
|
|
|
path: build/freetube-0.9.2.pacman
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-15 21:25:55 +00:00
|
|
|
- name: Upload Web Build
|
2020-05-27 23:01:44 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-10-19 20:00:21 +00:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
2020-05-27 23:01:44 +00:00
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube_0.9.2_static_web
|
2020-07-15 21:25:55 +00:00
|
|
|
path: dist/web
|
2020-10-19 20:00:21 +00:00
|
|
|
|
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-10-31 15:47:50 +00:00
|
|
|
name: freetube-0.9.2-win-x64-portable
|
|
|
|
path: build/freetube-0.9.2-win.zip
|
2020-10-19 20:00:21 +00:00
|
|
|
|
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-10-31 15:47:50 +00:00
|
|
|
name: freetube-0.9.2-setup-x64.exe
|
|
|
|
path: build/freetube Setup 0.9.2.exe
|
2020-10-19 20:00:21 +00:00
|
|
|
|
2020-07-30 02:58:07 +00:00
|
|
|
- name: Upload Windows Portable Artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
with:
|
2020-10-31 15:47:50 +00:00
|
|
|
name: freetube-0.9.2-portable-x64.exe
|
|
|
|
path: build/freetube 0.9.2.exe
|
2020-10-19 20:00:21 +00:00
|
|
|
|
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-10-31 15:47:50 +00:00
|
|
|
name: freetube-0.9.2-mac.dmg
|
|
|
|
path: build/freetube-0.9.2.dmg
|