-
Notifications
You must be signed in to change notification settings - Fork 0
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 #7 from diegosneves/feature/ci-hlg
👷 Adiciona arquivo da CI de HLG e atualiza CI de Produção
- Loading branch information
Showing
2 changed files
with
86 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
|
||
name: CI HLG | ||
|
||
on: | ||
pull_request: # Essas linhas indica que toda pull_request apontada para a branch main sera executado a CI | ||
branches: | ||
- 'release/*' | ||
jobs: | ||
check-application: | ||
strategy: | ||
matrix: | ||
ubuntu: ['ubuntu-latest'] | ||
java: ['17'] | ||
runs-on: ${{ matrix.ubuntu }} | ||
|
||
services: | ||
mysql: | ||
image: mysql:latest | ||
env: | ||
MYSQL_ROOT_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
MYSQL_DATABASE: ${{ secrets.DB_NAME }} | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10 | ||
|
||
env: | ||
DB_NAME: ${{ secrets.DB_NAME }} | ||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
DB_USERNAME: ${{ secrets.DB_USERNAME }} | ||
DB_HOST: 127.0.0.1 | ||
DB_PORT: 3306 | ||
|
||
steps: | ||
- name: Checkout codigo | ||
uses: actions/checkout@v3 | ||
|
||
- name: check PR head branch | ||
run: | | ||
if [[ "${{ github.head_ref }}" != develop ]]; then | ||
echo "PRs to main must come from a develop branch. PR is from '${{ github.head_ref }}'" | ||
exit 1 | ||
fi | ||
- name: Get branch name | ||
shell: bash | ||
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/*/} | cut -d'/' -f2)" >> $GITHUB_ENV | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: ${{ matrix.java }} | ||
|
||
- name: Setup Maven | ||
run: | | ||
sudo apt-get install -y maven | ||
- name: Install Dependencies | ||
run: mvn clean install -DskipTests | ||
|
||
- name: Run Tests | ||
run: mvn test | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
push: true | ||
tags: diegoneves/clean-architecture:${{ env.BRANCH_NAME }} | ||
build-args: | | ||
DB_NAME=${{ env.DB_NAME }} | ||
DB_PASSWORD=${{ env.DB_PASSWORD }} | ||
DB_USERNAME=${{ env.DB_USERNAME }} |
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