1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/.github/workflows/build.yml

164 lines
4.8 KiB
YAML
Raw Normal View History

2019-12-24 04:00:08 +08:00
name: docker-buildx
2019-12-21 02:12:34 +08:00
on:
pull_request:
branches:
- master
- experimental
2019-12-21 02:12:34 +08:00
push:
branches:
- master
- experimental
2019-12-30 07:43:52 +08:00
tags:
2019-12-30 07:50:47 +08:00
- '*.*'
2019-12-21 02:12:34 +08:00
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
2022-01-15 18:40:43 +08:00
node-version: [14.x]
2020-01-29 20:15:02 +08:00
services:
mariadb:
image: mariadb:latest
ports:
2020-01-29 23:15:39 +08:00
- 3306
2020-01-29 20:15:02 +08:00
env:
MYSQL_USER: user
MYSQL_PASSWORD: password
2020-01-30 06:02:07 +08:00
MYSQL_DATABASE: pigallery_test
2020-01-29 20:15:02 +08:00
MYSQL_ROOT_PASSWORD: password
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
2020-01-29 20:15:02 +08:00
- name: Verify MariaDB connection
env:
PORT: ${{ job.services.mariadb.ports[3306] }}
run: |
while ! mysqladmin ping -h"127.0.0.1" -P"$PORT" --silent; do
sleep 1
done
- name: npm install and build
run: |
npm ci
npm run build
- name: tslint
run: |
npm run lint
- name: test
run: |
npm test
env:
2020-01-29 20:15:02 +08:00
MYSQL_HOST: localhost
2020-01-30 06:14:46 +08:00
MYSQL_USERNAME: root
2020-01-29 20:15:02 +08:00
MYSQL_PASSWORD: password
2020-01-29 23:15:39 +08:00
MYSQL_PORT: ${{ job.services.mariadb.ports[3306] }}
2020-01-29 19:29:25 +08:00
PORT: 35000
CI: true
2019-12-21 02:12:34 +08:00
create-release:
runs-on: [ubuntu-latest]
needs: [test]
2019-12-21 02:12:34 +08:00
steps:
-
name: Checkout
uses: actions/checkout@v2
2019-12-21 03:44:15 +08:00
-
2019-12-21 02:12:34 +08:00
name: Setup Node.js for use with actions
uses: actions/setup-node@v2
2019-12-21 02:12:34 +08:00
with:
node-version: 12
2019-12-21 03:44:15 +08:00
-
2019-12-21 02:12:34 +08:00
name: Install Deps
run: npm install --unsafe-perm
-
name: Create Release
run: npm run create-release -- --skip-opt-packages=ffmpeg-static,ffprobe-static --force-opt-packages
- uses: actions/upload-artifact@v2
2019-12-21 02:12:34 +08:00
with:
name: pigallery2-release
path: release
build-docker:
2020-01-01 21:15:15 +08:00
runs-on: [ubuntu-latest]
needs: [create-release]
strategy:
matrix:
2021-05-10 05:47:36 +08:00
container: [alpine, debian-stretch, debian-buster]
2020-01-01 21:15:15 +08:00
steps:
-
name: Set tag
id: vars
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10}) && echo ::set-output name=type::$(echo ${GITHUB_REF:5})
-
name: Checkout
uses: actions/checkout@v2
2020-01-01 21:15:15 +08:00
-
uses: actions/download-artifact@v2
2020-01-01 21:15:15 +08:00
with:
name: pigallery2-release
path: pigallery2-release
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
2020-01-01 21:15:15 +08:00
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2020-01-01 21:15:15 +08:00
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
2020-01-01 21:15:15 +08:00
-
2021-05-10 05:51:22 +08:00
name: Test build on Pull request
if: ${{ startsWith(steps.vars.outputs.type , 'head') && ((github.event.issue.pull_request && github.ref == 'refs/heads/master') || github.ref != 'refs/heads/master') }}
uses: docker/build-push-action@v2
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: linux/amd64,linux/arm64,linux/arm/v7
-
name: Build experimental
if: ${{ github.ref == 'refs/heads/experimental' }}
2021-05-10 05:51:22 +08:00
uses: docker/build-push-action@v2
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: bpatrik/pigallery2:experimental-${{ matrix.container }}
2021-05-10 05:51:22 +08:00
-
name: Build and push nightly on new master commit
if: ${{ startsWith(steps.vars.outputs.type , 'head') && !github.event.issue.pull_request && github.ref == 'refs/heads/master' }}
uses: docker/build-push-action@v2
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: bpatrik/pigallery2:nightly-${{ matrix.container }}
-
2021-05-10 05:51:22 +08:00
name: Build and push release on new Tag
if: ${{ startsWith(steps.vars.outputs.type , 'tag') && !github.event.issue.pull_request }}
uses: docker/build-push-action@v2
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: |
bpatrik/pigallery2:nightly-${{ matrix.container }}
2021-05-10 05:47:36 +08:00
bpatrik/pigallery2:${{ steps.vars.outputs.tag }}-${{ matrix.container == 'debian-buster' && '' || matrix.container }}
bpatrik/pigallery2:latest-${{ matrix.container == 'debian-buster' && '' || matrix.container }}