-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5371e9
commit f0ddc7a
Showing
3 changed files
with
125 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: Docker Image (pre-release) | ||
|
||
on: | ||
push: | ||
branches: [ github-actions-test ] | ||
|
||
env: | ||
DOTNET_VERSION: '8.0.100' # The .NET SDK version to use | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
name: Run Test Cases | ||
|
||
services: | ||
mariadb: | ||
image: mariadb:latest | ||
ports: | ||
- 3306:3306 | ||
env: | ||
MARIADB_DATABASE: openbudgeteer | ||
MARIADB_USER: openbudgeteer | ||
MARIADB_PASSWORD: openbudgeteer | ||
|
||
steps: | ||
- name: Wait for MariaDB to be ready | ||
run: | | ||
docker ps | ||
while ! docker exec -i $(docker ps -q -f ancestor=mariadb:latest) mariadb -u openbudgeteer -p openbudgeteer -e "SHOW DATABASES"; do | ||
echo "Waiting for MariaDB..." | ||
sleep 3 | ||
done | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.DOTNET_VERSION }} | ||
|
||
- name: Install Blazor dependencies | ||
run: dotnet restore OpenBudgeteer.Blazor | ||
|
||
- name: Build Blazor | ||
run: dotnet build OpenBudgeteer.Blazor --configuration Release --no-restore | ||
|
||
- name: Run Core Test Cases | ||
env: | ||
CONNECTION_PROVIDER: mariadb | ||
CONNECTION_SERVER: mariadb | ||
CONNECTION_PORT: 3306 | ||
CONNECTION_USER: openbudgeteer | ||
CONNECTION_PASSWORD: openbudgeteer | ||
CONNECTION_DATABASE: openbudgeteer | ||
run: dotnet test OpenBudgeteer.Core.Test | ||
deploy-docker-app: | ||
runs-on: ubuntu-latest | ||
name: Build and Push Docker Image (App) | ||
needs: test | ||
if: success() | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Docker Login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: axelander/openbudgeteer:pre-release | ||
platforms: linux/arm64,linux/amd64 | ||
deploy-docker-api: | ||
runs-on: ubuntu-latest | ||
name: Build and Push Docker Image (API) | ||
needs: test | ||
if: success() | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Docker Login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: axelander/openbudgeteer-api:pre-release | ||
file: API.Dockerfile | ||
platforms: linux/arm64,linux/amd64 |
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