-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (71 loc) · 3.08 KB
/
cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Continuous Deployment
on:
push:
branches:
- main
- develop
- release/*
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt
- name: Train Model
run: |
export PYTHONPATH=$PYTHONPATH:$(pwd)
python3 ./challenge/train.py
- name: Set up Cloud SDK
uses: google-github-actions/[email protected]
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
- name: Configure Docker to use the gcloud command-line tool as a credential helper
run: gcloud auth configure-docker
- name: Build and Push Docker image
run: |
docker build -t gcr.io/${{ secrets.GCP_PROJECT_ID }}/flight-predictor . --platform linux/amd64
docker push gcr.io/${{ secrets.GCP_PROJECT_ID }}/flight-predictor
- name: Deploy to Cloud Run (Main)
id: deploy-main
if: github.ref == 'refs/heads/main'
run: |
echo "Deploying Main API to Google Cloud Run..."
URL=$(gcloud run deploy main-api --image gcr.io/${{ secrets.GCP_PROJECT_ID }}/flight-predictor --platform managed --region us-central1 --format="value(status.url) --allow-unauthenticated")
echo "::set-output name=url::$URL"
echo "Deployment completed at $URL"
- name: Deploy to Cloud Run (Develop)
id: deploy-develop
if: github.ref == 'refs/heads/develop'
run: |
echo "Deploying Develop API to Google Cloud Run..."
URL=$(gcloud run deploy develop-api --image gcr.io/${{ secrets.GCP_PROJECT_ID }}/flight-predictor --platform managed --region us-central1 --format="value(status.url) --allow-unauthenticated")
echo "::set-output name=url::$URL"
echo "Deployment completed at $URL"
- name: Deploy to Cloud Run (Release)
id: deploy-release
if: contains(github.ref, 'refs/heads/release/')
run: |
echo "Deploying Release API to Google Cloud Run..."
URL=$(gcloud run deploy release-api --image gcr.io/${{ secrets.GCP_PROJECT_ID }}/flight-predictor --platform managed --region us-central1 --format="value(status.url) --allow-unauthenticated")
echo "::set-output name=url::$URL"
echo "Deployment completed at $URL"
- name: Set STRESS_URL for Makefile
run: |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
echo "STRESS_URL=${{ steps.deploy-main.outputs.url }}" >> $GITHUB_ENV
elif [ "${{ github.ref }}" == "refs/heads/develop" ]; then
echo "STRESS_URL=${{ steps.deploy-develop.outputs.url }}" >> $GITHUB_ENV
elif [[ "${{ github.ref }}" == refs/heads/release/* ]]; then
echo "STRESS_URL=${{ steps.deploy-release.outputs.url }}" >> $GITHUB_ENV
fi
- name: Run stress tests
run: |
make stress-test STRESS_URL=${{ env.STRESS_URL }}