Skip to content

i18n: new translations #3008

i18n: new translations

i18n: new translations #3008

Workflow file for this run

name: build
permissions:
contents: read
on:
pull_request:
branches:
- master
jobs:
package:
uses: ./.github/workflows/package.yml
docker:
needs: package
uses: ./.github/workflows/build-docker.yml
with:
push: false
flood-version: pr-${{ github.event.pull_request.number || 'check' }}
flood-tags: |
jesec/flood:pr-${{ github.event.pull_request.number || 'check' }}
platforms: linux/amd64,linux/arm64
pkg:
needs: package
uses: ./.github/workflows/build-binary.yml
with:
upload-name: pkg-binaries-pr
docker-distroless:
needs: pkg
uses: ./.github/workflows/build-docker-distroless.yml
with:
push: false
binary-artifact: pkg-binaries-pr
flood-version: pr-${{ github.event.pull_request.number || 'check' }}
flood-tags: |
jesec/flood:pr-${{ github.event.pull_request.number || 'check' }}-distroless
platforms: linux/amd64,linux/arm64
debian:
needs: package
uses: ./.github/workflows/build-debian.yml
build:
runs-on: ubuntu-slim
needs:
- pkg
- docker
- docker-distroless
- debian
if: always()
steps:
- run: |
if [[ "${{ needs.pkg.result }}" != "success" ]]; then
exit 1
fi
- run: |
if [[ "${{ needs.docker.result }}" != "success" ]]; then
exit 1
fi
- run: |
if [[ "${{ needs.docker-distroless.result }}" != "success" ]]; then
exit 1
fi
- run: |
if [[ "${{ needs.debian.result }}" != "success" ]]; then
exit 1
fi