forked from nyaruka/courier
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from Ilhasoft/update/v7.4.0
Update/v7.4.0
- Loading branch information
Showing
62 changed files
with
1,637 additions
and
615 deletions.
There are no files selected for viewing
93 changes: 93 additions & 0 deletions
93
.github/workflows/build-courier-push-tag-sp-india-ire.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: Build Courier in SP, India and Ireland (Push Tag) | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*.*.*-staging' | ||
- '*.*.*' | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set variables | ||
run: | | ||
TAG="$( echo "${GITHUB_REF}" | cut -d'/' -f3 )" | ||
if grep -qs -e '^.*.*-develop' <<< "${TAG}" ; then | ||
echo "Found environment: DEVELOP - ${TAG}" | ||
echo "ENVIRONMENT=develop" | tee -a "${GITHUB_ENV}" | ||
exit 1 # stop action | ||
elif grep -qs -e '^.*.*-staging' <<< "${TAG}" ; then | ||
echo "Found environment: STAGING - ${TAG}" | ||
echo "ENVIRONMENT=staging" | tee -a "${GITHUB_ENV}" | ||
elif grep -qs -e '^.*.*' <<< "${TAG}" ; then | ||
echo "No environment found, assuming: PRODUCTION - ${TAG}" | ||
echo "ENVIRONMENT=production" | tee -a "${GITHUB_ENV}" | ||
else | ||
echo 'Not a valid tag. Skipping...' | ||
exit 1 | ||
fi | ||
echo "TAG=$TAG" | tee -a "${GITHUB_ENV}" | ||
VERSION="${TAG}" | ||
echo "VERSION=${VERSION}" | tee -a "${GITHUB_ENV}" | ||
echo "COMMIT_SHA=$GITHUB_SHA" | tee -a "${GITHUB_ENV}" | ||
if [[ "${TAG}" == *"-india"* ]]; then | ||
echo "IMAGE_TAG=${{ secrets.ECR_INDIA }}/courier:${TAG}" | tee -a "${GITHUB_ENV}" | ||
elif [[ "${TAG}" == *"-ire"* ]]; then | ||
echo "IMAGE_TAG=${{ secrets.ECR_IRE }}/rp-courier-rapidpro:${TAG}" | tee -a "${GITHUB_ENV}" | ||
else | ||
echo "IMAGE_TAG=${{ secrets.ECR_SP }}/push-courier:${TAG}" | tee -a "${GITHUB_ENV}" | ||
fi | ||
echo "IMAGE_SOURCE_URL=https://github.com/weni-ai/courier" | tee -a "${GITHUB_ENV}" | ||
echo "MANIFESTS_REPOSITORY=Ilhasoft/kubernetes-manifests-platform" | tee -a "${GITHUB_ENV}" | ||
echo "MANIFESTS_APPLICATION=weni-flows/courier" | tee -a "${GITHUB_ENV}" | ||
echo "MANIFESTS_PATCH_TARGET=deployment.json" | tee -a "${GITHUB_ENV}" | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: "${{env.GITHUB_SHA}}" | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to Registry India | ||
if: ${{ contains(env.TAG, '-india') }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ secrets.ECR_INDIA }} | ||
username: ${{ secrets.AWS_ACCESS_KEY_ID_INDIA }} | ||
password: ${{ secrets.AWS_SECRET_ACCESS_KEY_INDIA }} | ||
|
||
- name: Login to Registry Ireland | ||
if: ${{ contains(env.TAG, '-ire') }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ secrets.ECR_IRE }} | ||
username: ${{ secrets.AWS_ACCESS_KEY_ID_IRE }} | ||
password: ${{ secrets.AWS_SECRET_ACCESS_KEY_IRE }} | ||
|
||
- name: Login to Registry SP | ||
if: ${{ !contains(env.TAG, '-india') && !contains(env.TAG, '-ire') }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ secrets.ECR_SP }} | ||
username: ${{ secrets.AWS_ACCESS_KEY_ID_SP }} | ||
password: ${{ secrets.AWS_SECRET_ACCESS_KEY_SP }} | ||
|
||
- name: Build and push - Courier Image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
labels: | | ||
tag=${{env.TAG}} | ||
commit=${{env.COMMIT_SHA}} | ||
repository=${{env.IMAGE_SOURCE_URL}} | ||
file: docker/Dockerfile | ||
push: true | ||
tags: "${{env.IMAGE_TAG}}" | ||
no-cache: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,74 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
env: | ||
go-version: '1.17.x' | ||
redis-version: '3.2.4' | ||
go-version: "1.18.x" | ||
redis-version: "5.0.6" | ||
jobs: | ||
test: | ||
name: Test | ||
strategy: | ||
matrix: | ||
pg-version: ['12', '13'] | ||
pg-version: ["12", "13"] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
|
||
- name: Install Redis | ||
uses: zhulik/[email protected] | ||
with: | ||
redis version: ${{ env.redis-version }} | ||
- name: Install Redis | ||
uses: zhulik/[email protected] | ||
with: | ||
redis version: ${{ env.redis-version }} | ||
|
||
- name: Install PostgreSQL | ||
uses: harmon758/postgresql-action@v1 | ||
with: | ||
postgresql version: ${{ matrix.pg-version }} | ||
postgresql db: courier_test | ||
postgresql user: courier | ||
postgresql password: courier | ||
- name: Install PostgreSQL | ||
uses: harmon758/postgresql-action@v1 | ||
with: | ||
postgresql version: ${{ matrix.pg-version }} | ||
postgresql db: courier_test | ||
postgresql user: courier | ||
postgresql password: courier | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
|
||
- name: Run tests | ||
run: go test -p=1 -coverprofile=coverage.text -covermode=atomic ./... | ||
- name: Run tests | ||
run: go test -p=1 -coverprofile=coverage.text -covermode=atomic ./... | ||
|
||
- name: Upload coverage | ||
if: success() | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
fail_ci_if_error: true | ||
|
||
- name: Upload coverage | ||
if: success() | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: true | ||
|
||
release: | ||
name: Release | ||
needs: [test] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
|
||
- name: Publish release | ||
uses: goreleaser/goreleaser-action@v1 | ||
if: ${{ !contains(github.ref, '-') }} | ||
with: | ||
version: v0.147.2 | ||
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish release | ||
uses: goreleaser/goreleaser-action@v1 | ||
if: ${{ !contains(github.ref, '-') }} | ||
with: | ||
version: v0.147.2 | ||
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish non-master release | ||
uses: goreleaser/goreleaser-action@v1 | ||
if: contains(github.ref, '-') | ||
with: | ||
version: v0.147.2 | ||
args: release --rm-dist --skip-validate | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish non-master release | ||
uses: goreleaser/goreleaser-action@v1 | ||
if: contains(github.ref, '-') | ||
with: | ||
version: v0.147.2 | ||
args: release --rm-dist --skip-validate | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.