mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
1650cdf76f
* chore: Remove `backup` target from Makefile - The `backup` target is no longer serving any value to us. It was made redundant with changes added in Oct 2020. - `clean` target inline docs revised. - `.gitignore` remove test lines that are no longer valid. * chore: Parallel test target split to multi-line * tests(fix): Test `setup.sh` with temporary config dir The `no_containers.bats` test has many redundant test cases already covered by `setup-cli`. They're basically identical. Removed all but one. This removes some config dirs that were being explicitly created instead of using the test helper to generate a directory that can be used to test the `-p` option instead. * ci: Ensure tests are run when `Makefile` is modified
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: "Test Merge Requests"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- target/**
|
|
- test/**
|
|
- .dockerignore
|
|
- .gitmodules
|
|
- Dockerfile
|
|
- Makefile
|
|
- setup.sh
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build-image-amd64:
|
|
name: "Build AMD64 Image"
|
|
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_build.yml@master
|
|
|
|
run-tests:
|
|
name: "Test AMD64 Image"
|
|
needs: build-image-amd64
|
|
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_test.yml@master
|
|
with:
|
|
cache-key: ${{ needs.build-image-amd64.outputs.build-cache-key }}
|
|
|
|
job-build-arm:
|
|
name: "Build ARM64 Image"
|
|
# Dependency ensures the cache-key is only created for AMD64 builds.
|
|
# ARM64 will not be able to use this cache, building from scratch each time.
|
|
# Expect about 2 minutes extra build time until adopting `type=gha` with scopes for cache.
|
|
needs: build-image-amd64
|
|
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_build.yml@master
|
|
with:
|
|
platforms: linux/arm64
|