2022-03-24 16:22:06 +01:00
|
|
|
# Based on https://github.com/docker/build-push-action
|
|
|
|
|
2022-03-24 18:08:17 +01:00
|
|
|
name: "Docker"
|
2022-03-24 16:22:06 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
release: # A GitHub release was published
|
|
|
|
types: [published]
|
2022-03-24 16:50:30 +01:00
|
|
|
workflow_dispatch: # A build was manually requested
|
2022-03-25 11:08:13 +01:00
|
|
|
workflow_call: # Another pipeline called us
|
2022-03-25 15:27:41 +01:00
|
|
|
secrets:
|
|
|
|
DOCKER_TOKEN:
|
|
|
|
required: true
|
2022-03-24 16:22:06 +01:00
|
|
|
|
|
|
|
env:
|
|
|
|
DOCKER_NAMESPACE: matrixdotorg
|
|
|
|
DOCKER_HUB_USER: dendritegithub
|
|
|
|
GHCR_NAMESPACE: matrix-org
|
|
|
|
PLATFORMS: linux/amd64,linux/arm64,linux/arm/v7
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
monolith:
|
|
|
|
name: Monolith image
|
|
|
|
runs-on: ubuntu-latest
|
2022-03-25 10:05:06 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
2022-11-03 14:57:44 +01:00
|
|
|
security-events: write # To upload Trivy sarif files
|
2022-03-24 16:22:06 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get release tag & build flags
|
2022-03-24 16:22:06 +01:00
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-11-02 15:04:08 +01:00
|
|
|
run: |
|
|
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2022-11-04 20:58:24 +01:00
|
|
|
echo "BUILD=$(git rev-parse --short HEAD || \"\")" >> $GITHUB_ENV
|
2022-11-02 15:04:08 +01:00
|
|
|
BRANCH=$(git symbolic-ref --short HEAD | tr -d \/)
|
|
|
|
[ ${BRANCH} == "main" ] && BRANCH=""
|
|
|
|
echo "BRANCH=${BRANCH}" >> $GITHUB_ENV
|
2022-03-24 16:22:06 +01:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Set up Docker Buildx
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-03-24 16:22:06 +01:00
|
|
|
- name: Login to Docker Hub
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/login-action@v2
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
username: ${{ env.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Login to GitHub Containers
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/login-action@v2
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2022-03-25 10:05:06 +01:00
|
|
|
username: ${{ github.repository_owner }}
|
2022-03-24 16:22:06 +01:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-03-25 11:08:13 +01:00
|
|
|
- name: Build main monolith image
|
|
|
|
if: github.ref_name == 'main'
|
2022-03-24 16:22:06 +01:00
|
|
|
id: docker_build_monolith
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-02 15:04:08 +01:00
|
|
|
target: monolith
|
2022-03-24 16:22:06 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
2022-03-24 16:50:30 +01:00
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:${{ github.ref_name }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ github.ref_name }}
|
2022-03-24 16:22:06 +01:00
|
|
|
|
2022-11-02 15:04:08 +01:00
|
|
|
- name: Run Trivy vulnerability scanner
|
|
|
|
uses: aquasecurity/trivy-action@master
|
|
|
|
with:
|
|
|
|
image-ref: ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ github.ref_name }}
|
|
|
|
format: "sarif"
|
|
|
|
output: "trivy-results.sarif"
|
|
|
|
|
|
|
|
- name: Upload Trivy scan results to GitHub Security tab
|
2022-11-03 08:20:51 +01:00
|
|
|
uses: github/codeql-action/upload-sarif@v2
|
2022-11-02 15:04:08 +01:00
|
|
|
with:
|
|
|
|
sarif_file: "trivy-results.sarif"
|
|
|
|
|
2022-03-24 16:22:06 +01:00
|
|
|
- name: Build release monolith image
|
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-03-24 17:22:39 +01:00
|
|
|
id: docker_build_monolith_release
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-02 15:04:08 +01:00
|
|
|
target: monolith
|
2022-03-24 16:22:06 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:latest
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:latest
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }}
|
|
|
|
|
|
|
|
polylith:
|
|
|
|
name: Polylith image
|
|
|
|
runs-on: ubuntu-latest
|
2022-03-25 10:05:06 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
2022-11-03 14:57:44 +01:00
|
|
|
security-events: write # To upload Trivy sarif files
|
2022-03-24 16:22:06 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get release tag & build flags
|
2022-03-24 16:22:06 +01:00
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-11-02 15:04:08 +01:00
|
|
|
run: |
|
|
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2022-11-04 20:58:24 +01:00
|
|
|
echo "BUILD=$(git rev-parse --short HEAD || \"\")" >> $GITHUB_ENV
|
2022-11-02 15:04:08 +01:00
|
|
|
BRANCH=$(git symbolic-ref --short HEAD | tr -d \/)
|
|
|
|
[ ${BRANCH} == "main" ] && BRANCH=""
|
|
|
|
echo "BRANCH=${BRANCH}" >> $GITHUB_ENV
|
2022-03-24 16:22:06 +01:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Set up Docker Buildx
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-03-24 16:22:06 +01:00
|
|
|
- name: Login to Docker Hub
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/login-action@v2
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
username: ${{ env.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Login to GitHub Containers
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/login-action@v2
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2022-03-25 10:05:06 +01:00
|
|
|
username: ${{ github.repository_owner }}
|
2022-03-24 16:22:06 +01:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-03-25 11:08:13 +01:00
|
|
|
- name: Build main polylith image
|
|
|
|
if: github.ref_name == 'main'
|
2022-03-24 16:22:06 +01:00
|
|
|
id: docker_build_polylith
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-02 15:04:08 +01:00
|
|
|
target: polylith
|
2022-03-24 16:22:06 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
2022-03-24 16:50:30 +01:00
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-polylith:${{ github.ref_name }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-polylith:${{ github.ref_name }}
|
2022-03-24 16:22:06 +01:00
|
|
|
|
2022-11-02 15:04:08 +01:00
|
|
|
- name: Run Trivy vulnerability scanner
|
|
|
|
uses: aquasecurity/trivy-action@master
|
|
|
|
with:
|
|
|
|
image-ref: ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-polylith:${{ github.ref_name }}
|
|
|
|
format: "sarif"
|
|
|
|
output: "trivy-results.sarif"
|
|
|
|
|
|
|
|
- name: Upload Trivy scan results to GitHub Security tab
|
2022-11-03 08:20:51 +01:00
|
|
|
uses: github/codeql-action/upload-sarif@v2
|
2022-11-02 15:04:08 +01:00
|
|
|
with:
|
|
|
|
sarif_file: "trivy-results.sarif"
|
|
|
|
|
2022-03-24 16:22:06 +01:00
|
|
|
- name: Build release polylith image
|
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-03-24 17:22:39 +01:00
|
|
|
id: docker_build_polylith_release
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2022-03-24 16:22:06 +01:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-02 15:04:08 +01:00
|
|
|
target: polylith
|
2022-03-24 16:22:06 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-polylith:latest
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-polylith:${{ env.RELEASE_VERSION }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-polylith:latest
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-polylith:${{ env.RELEASE_VERSION }}
|
2022-09-27 10:39:39 +02:00
|
|
|
|
|
|
|
demo-pinecone:
|
|
|
|
name: Pinecone demo image
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get release tag & build flags
|
2022-09-27 10:39:39 +02:00
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-11-02 15:04:08 +01:00
|
|
|
run: |
|
|
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2022-11-04 20:58:24 +01:00
|
|
|
echo "BUILD=$(git rev-parse --short HEAD || \"\")" >> $GITHUB_ENV
|
2022-11-02 15:04:08 +01:00
|
|
|
BRANCH=$(git symbolic-ref --short HEAD | tr -d \/)
|
|
|
|
[ ${BRANCH} == "main" ] && BRANCH=""
|
|
|
|
echo "BRANCH=${BRANCH}" >> $GITHUB_ENV
|
2022-09-27 10:39:39 +02:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Set up Docker Buildx
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-09-27 10:39:39 +02:00
|
|
|
- name: Login to Docker Hub
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/login-action@v2
|
2022-09-27 10:39:39 +02:00
|
|
|
with:
|
|
|
|
username: ${{ env.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Login to GitHub Containers
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/login-action@v2
|
2022-09-27 10:39:39 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-11-02 15:04:08 +01:00
|
|
|
- name: Build main Pinecone demo image
|
2022-09-27 10:39:39 +02:00
|
|
|
if: github.ref_name == 'main'
|
|
|
|
id: docker_build_demo_pinecone
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2022-09-27 10:39:39 +02:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-03 14:57:44 +01:00
|
|
|
file: ./build/docker/Dockerfile.demo-pinecone
|
2022-09-27 10:39:39 +02:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-pinecone:${{ github.ref_name }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-pinecone:${{ github.ref_name }}
|
|
|
|
|
2022-11-02 15:04:08 +01:00
|
|
|
- name: Build release Pinecone demo image
|
2022-09-27 10:39:39 +02:00
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
|
|
|
id: docker_build_demo_pinecone_release
|
2022-11-02 15:04:08 +01:00
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-03 14:57:44 +01:00
|
|
|
file: ./build/docker/Dockerfile.demo-pinecone
|
2022-11-02 15:04:08 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|
|
|
|
|
2022-11-02 15:09:19 +01:00
|
|
|
demo-yggdrasil:
|
|
|
|
name: Yggdrasil demo image
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get release tag & build flags
|
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
|
|
|
run: |
|
|
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2022-11-04 20:58:24 +01:00
|
|
|
echo "BUILD=$(git rev-parse --short HEAD || \"\")" >> $GITHUB_ENV
|
2022-11-02 15:09:19 +01:00
|
|
|
BRANCH=$(git symbolic-ref --short HEAD | tr -d \/)
|
|
|
|
[ ${BRANCH} == "main" ] && BRANCH=""
|
|
|
|
echo "BRANCH=${BRANCH}" >> $GITHUB_ENV
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ env.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Login to GitHub Containers
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-11-02 15:04:08 +01:00
|
|
|
- name: Build main Yggdrasil demo image
|
|
|
|
if: github.ref_name == 'main'
|
|
|
|
id: docker_build_demo_yggdrasil
|
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-03 14:57:44 +01:00
|
|
|
file: ./build/docker/Dockerfile.demo-yggdrasil
|
2022-11-02 15:04:08 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:${{ github.ref_name }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:${{ github.ref_name }}
|
|
|
|
|
|
|
|
- name: Build release Yggdrasil demo image
|
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
|
|
|
id: docker_build_demo_yggdrasil_release
|
|
|
|
uses: docker/build-push-action@v3
|
2022-09-27 10:39:39 +02:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-02 15:41:38 +01:00
|
|
|
build-args: FLAGS=-X github.com/matrix-org/dendrite/internal.branch=${{ env.BRANCH }} -X github.com/matrix-org/dendrite/internal.build=${{ env.BUILD }}
|
2022-11-03 14:57:44 +01:00
|
|
|
file: ./build/docker/Dockerfile.demo-yggdrasil
|
2022-09-27 10:39:39 +02:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
2022-11-02 15:04:08 +01:00
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|