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

179 lines
5.6 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:
2022-02-07 23:38:37 +08:00
- '**'
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-11-30 04:52:26 +08:00
node-version: [18.x]
steps:
- uses: getong/mariadb-action@v1.11
with:
mysql database: 'pigallery_test'
mysql root password: 'password'
mysql user: 'user'
mysql password: 'password'
2024-04-16 03:46:03 +08:00
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
2024-04-16 03:46:03 +08:00
uses: actions/setup-node@v4
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
2022-04-26 00:09:06 +08:00
- name: lint
run: |
npm run lint
- name: test
run: |
npm test
2023-10-12 06:09:17 +08:00
npm run coverage
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
2023-10-12 06:09:17 +08:00
- name: Coveralls
uses: coverallsapp/github-action@v2
- name: E2E test - Cypress run
2023-09-06 18:56:52 +08:00
uses: cypress-io/github-action@v6
2023-09-21 03:40:29 +08:00
env:
DEBUG: '@cypress/github-action'
2023-09-06 18:56:52 +08:00
with:
start: npm run start-e2e-server
2023-09-21 03:30:25 +08:00
# after the test run completes store screenshots
- uses: actions/upload-artifact@v3
if: failure() # Store screenshots only on failures
with:
name: cypress-screenshots
path: test/cypress/screenshots
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
2019-12-21 02:12:34 +08:00
create-release:
runs-on: [ubuntu-latest]
2024-04-18 03:16:49 +08:00
needs: [test]
2019-12-21 02:12:34 +08:00
steps:
-
name: Checkout
2024-04-16 03:46:03 +08:00
uses: actions/checkout@v4
2019-12-21 03:44:15 +08:00
-
2019-12-21 02:12:34 +08:00
name: Setup Node.js for use with actions
2024-04-16 03:46:03 +08:00
uses: actions/setup-node@v4
2019-12-21 02:12:34 +08:00
with:
2022-11-30 04:52:26 +08:00
node-version: 18
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
2024-04-16 03:46:03 +08:00
- uses: actions/upload-artifact@v4
2019-12-21 02:12:34 +08:00
with:
name: pigallery2-release
path: release
2022-03-11 20:21:29 +08:00
build-dockerx:
runs-on: [ ubuntu-latest ]
needs: [ create-release ]
strategy:
matrix:
container: [alpine, debian-bullseye, debian-bookworm ]
include:
- container: alpine
platforms: linux/amd64,linux/arm64,linux/arm/v7
- container: debian-bullseye
platforms: linux/amd64,linux/arm64,linux/arm/v7
2024-04-18 02:17:58 +08:00
- container: debian-bookworm
platforms: linux/amd64,linux/arm64,linux/arm/v7
2020-01-01 21:15:15 +08:00
steps:
- name: Checkout
2024-04-16 03:43:19 +08:00
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
2020-01-01 21:15:15 +08:00
with:
name: pigallery2-release
path: pigallery2-release
- name: Set up QEMU
2024-04-16 03:43:19 +08:00
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
2024-04-16 03:43:19 +08:00
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
2024-04-16 03:43:19 +08:00
uses: docker/login-action@v3
with:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build docker
2024-04-16 03:43:19 +08:00
uses: docker/build-push-action@v5
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
2022-03-12 07:02:11 +08:00
platforms: ${{ matrix.platforms }}
- name: Push experimental
if: ${{ github.ref == 'refs/heads/experimental' }}
2024-04-16 03:43:19 +08:00
uses: docker/build-push-action@v5
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: ${{ matrix.platforms }}
push: true
tags: bpatrik/pigallery2:experimental-${{ matrix.container }}
2023-09-02 21:07:43 +08:00
- name: Push edge on new master commit
# github.ref: branches the format is refs/heads/<branch_name> PRs and Tags are different
2023-09-02 21:07:43 +08:00
if: ${{github.ref == 'refs/heads/master' }}
2024-04-16 03:43:19 +08:00
uses: docker/build-push-action@v5
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: ${{ matrix.platforms }}
push: true
2023-09-02 21:20:28 +08:00
tags: bpatrik/pigallery2:edge-${{ matrix.container }}
- name: Push release on new Tag
2024-04-18 02:17:58 +08:00
if: ${{ startsWith(github.ref_type , 'tag') && !github.event.issue.pull_request && matrix.container != 'debian-bookworm'}}
2024-04-16 03:43:19 +08:00
uses: docker/build-push-action@v5
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: ${{ matrix.platforms }}
push: true
tags: |
2023-09-02 21:07:43 +08:00
bpatrik/pigallery2:edge-${{ matrix.container }}
bpatrik/pigallery2:${{ github.ref_name }}-${{ matrix.container }}
2022-03-11 20:30:04 +08:00
bpatrik/pigallery2:latest-${{ matrix.container }}
- name: Push latest on new Tag
2024-04-18 02:17:58 +08:00
if: ${{ startsWith(github.ref_type, 'tag') && !github.event.issue.pull_request && matrix.container == 'debian-bookworm'}}
2024-04-16 03:43:19 +08:00
uses: docker/build-push-action@v5
with:
context: .
file: docker/${{ matrix.container }}/Dockerfile.build
platforms: ${{ matrix.platforms }}
push: true
tags: |
2023-09-02 21:07:43 +08:00
bpatrik/pigallery2:edge-${{ matrix.container }}
bpatrik/pigallery2:${{ github.ref_name }}-${{ matrix.container }}
2022-03-13 04:39:22 +08:00
bpatrik/pigallery2:latest-${{ matrix.container }}
bpatrik/pigallery2:${{ github.ref_name }}
bpatrik/pigallery2:latest