Skip to content

Commit

Permalink
Merge branch 'master' into feat/psql-db-copy-aurora
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoaugustine authored May 14, 2024
2 parents 0cedf45 + ad7d258 commit 5de63f9
Show file tree
Hide file tree
Showing 115 changed files with 5,796 additions and 1,848 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build_awshelper.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build awshelper image

# Always build this image because it contains all the cloud-automation files.
# Some jobs depend on arbitrary files and we need to test them with updated awshelper images.
on: push

jobs:
awshelper:
name: awshelper
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master
with:
DOCKERFILE_LOCATION: "./Docker/awshelper/Dockerfile"
OVERRIDE_REPO_NAME: "awshelper"
secrets:
ECR_AWS_ACCESS_KEY_ID: ${{ secrets.ECR_AWS_ACCESS_KEY_ID }}
ECR_AWS_SECRET_ACCESS_KEY: ${{ secrets.ECR_AWS_SECRET_ACCESS_KEY }}
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_ROBOT_TOKEN: ${{ secrets.QUAY_ROBOT_TOKEN }}

23 changes: 23 additions & 0 deletions .github/workflows/build_python3.10.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Python 3.10 image

on:
push:
paths:
- .github/workflows/build_python3.10.yaml
- Docker/python-nginx/python3.10-buster/**

jobs:
python_3-10:
name: Python 3.10
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master
with:
DOCKERFILE_LOCATION: "./Docker/python-nginx/python3.10-buster/Dockerfile"
DOCKERFILE_BUILD_CONTEXT: "./Docker/python-nginx/python3.10-buster"
OVERRIDE_REPO_NAME: "python"
OVERRIDE_TAG_NAME: "python3.10-buster-$(echo ${GITHUB_REF#refs/*/} | tr / _)"
secrets:
ECR_AWS_ACCESS_KEY_ID: ${{ secrets.ECR_AWS_ACCESS_KEY_ID }}
ECR_AWS_SECRET_ACCESS_KEY: ${{ secrets.ECR_AWS_SECRET_ACCESS_KEY }}
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_ROBOT_TOKEN: ${{ secrets.QUAY_ROBOT_TOKEN }}

23 changes: 23 additions & 0 deletions .github/workflows/build_python3.9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Python 3.9 image

on:
push:
paths:
- .github/workflows/build_python3.9.yaml
- Docker/python-nginx/python3.9-buster/**

jobs:
python_3-9:
name: Python 3.9
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master
with:
DOCKERFILE_LOCATION: "./Docker/python-nginx/python3.9-buster/Dockerfile"
DOCKERFILE_BUILD_CONTEXT: "./Docker/python-nginx/python3.9-buster"
OVERRIDE_REPO_NAME: "python"
OVERRIDE_TAG_NAME: "python3.9-buster-$(echo ${GITHUB_REF#refs/*/} | tr / _)"
secrets:
ECR_AWS_ACCESS_KEY_ID: ${{ secrets.ECR_AWS_ACCESS_KEY_ID }}
ECR_AWS_SECRET_ACCESS_KEY: ${{ secrets.ECR_AWS_SECRET_ACCESS_KEY }}
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_ROBOT_TOKEN: ${{ secrets.QUAY_ROBOT_TOKEN }}

42 changes: 0 additions & 42 deletions .github/workflows/image_build_push.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: git@github.com:Yelp/detect-secrets
rev: v0.13.1
rev: v1.4.0
hooks:
- id: detect-secrets
args: ['--baseline', '.secrets.baseline']
Expand Down
Loading

0 comments on commit 5de63f9

Please sign in to comment.