2023-04-11 02:26:04 +00:00
|
|
|
name: Docker-CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- release/*
|
|
|
|
paths:
|
|
|
|
- frontend/**
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- release/*
|
|
|
|
paths:
|
|
|
|
- frontend/**
|
|
|
|
types:
|
|
|
|
- opened
|
|
|
|
- synchronize
|
|
|
|
- reopened
|
|
|
|
- unlocked
|
|
|
|
- ready_for_review
|
|
|
|
|
2023-06-22 13:22:46 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-04-11 02:26:04 +00:00
|
|
|
jobs:
|
|
|
|
build-app:
|
|
|
|
if: github.event.pull_request.draft != true
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout source code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build the app
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
set -eu -o pipefail
|
|
|
|
cd frontend/scripts/docker-buildfiles
|
|
|
|
docker-compose build --no-cache --progress=plain \
|
|
|
|
| while read line; do \
|
|
|
|
if [[ "$line" =~ ^Step[[:space:]] ]]; then \
|
|
|
|
echo "$(date -u '+%H:%M:%S') | $line"; \
|
|
|
|
else \
|
|
|
|
echo "$line"; \
|
|
|
|
fi; \
|
|
|
|
done \
|