Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SREMG-166: Apply the Mailgun load-balancer patch on top of v2.11.2 #5

Open
wants to merge 3 commits into
base: v2.11.2-patched
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 0 additions & 62 deletions .github/workflows/build.yaml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/build_and_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: On Pull Request

on:
pull_request:
branches: [v2.11.2-patched]

jobs:
test:
name: build_and_push
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Docker Layer Cache
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ github.event.number }}
restore-keys: ${{ runner.os }}-docker-

# Buildx Needs QEMU
- name: Set up QEMU
uses: docker/setup-qemu-action@v1

# We use Buildx so we can take advantage of the caching
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}

- name: Build and push
uses: docker/build-push-action@v3
with:
tags: ghcr.io/${{ github.repository }}:PR${{ github.event.number }}
push: true
25 changes: 0 additions & 25 deletions .github/workflows/check_doc.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/codeql.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/documentation.yml

This file was deleted.

59 changes: 0 additions & 59 deletions .github/workflows/experimental.yaml

This file was deleted.

75 changes: 0 additions & 75 deletions .github/workflows/test-integration.yaml

This file was deleted.

Loading
Loading