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

Update deploy scripts #3

Merged
merged 2 commits into from
Dec 4, 2024
Merged
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
54 changes: 54 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,60 @@ on:
- main

jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.SHARED_PAT }}
submodules: recursive

- name: Build and start services
run: |
docker compose -f docker-compose.test.yml up -d database
sleep 10 # Adjust sleep time as needed to allow services to start

- name: Wait for database to be ready
run: |
until docker compose -f docker-compose.test.yml exec -T database pg_isready -U postgres; do
>&2 echo "Postgres is unavailable - sleeping"
sleep 1
done
- name: Start app service
run: docker compose -f docker-compose.test.yml up --force-recreate --build --exit-code-from app app --remove-orphans

- name: Clean up
if: always()
run: docker compose -f docker-compose.test.yml down
build_and_push:
name: Build and push to ACR
needs: build_and_test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.SHARED_PAT }}
submodules: recursive
- name: Log in to Azure Container Registry
run: |
echo "${{ secrets.AZURE_PASSWORD }}" | docker login "${{ secrets.ACR_REGISTRY }}" --username "${{ secrets.AZURE_APP_ID }}" --password-stdin

- name: Set version
run: echo "VERSION=${{ github.run_number }}" >> $GITHUB_ENV

- name: Build Docker Image with both tags
run: |
docker build -t ${{ secrets.ACR_REGISTRY }}/tristanvantriest/gtfs-rt:latest \
-t ${{ secrets.ACR_REGISTRY }}/tristanvantriest/gtfs-rt:${{ env.VERSION }} \
-f Dockerfile .

- name: Push Docker Image to ACR with both tags
run: |
docker push ${{ secrets.ACR_REGISTRY }}/tristanvantriest/gtfs-rt:latest
docker push ${{ secrets.ACR_REGISTRY }}/tristanvantriest/gtfs-rt:${{ env.VERSION }}
deploy:
name: Deploy to Production
if: github.event.pull_request.merged == true || github.event_name == 'push'
Expand Down
65 changes: 0 additions & 65 deletions .github/workflows/main_test.yml

This file was deleted.

12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Test service

on:
push:
branches:
- '**'
- '!main'
branches-ignore:
- main
pull_request:
branches:
- '**'
- '!main'
types:
- opened
- reopened
- synchronize

jobs:
build_and_test:
Expand Down
Loading