forked from mapasculturais/mapasculturais
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adiciona pipeline para teste e publicacao da imagem docker
- Loading branch information
Showing
8 changed files
with
130 additions
and
233 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 |
---|---|---|
@@ -1,46 +1,115 @@ | ||
name: ci | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- homolog | ||
|
||
workflow_dispatch: | ||
- develop | ||
pull_request: ~ | ||
workflow_dispatch: ~ | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
jobs: | ||
BUILD: | ||
tests: | ||
name: Tests | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
attestations: write | ||
id-token: write | ||
steps: | ||
|
||
- uses: actions/[email protected] | ||
|
||
- name: Docker Login | ||
uses: docker/[email protected] | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
- | ||
name: Environment Variables | ||
run: cp api/.env.sample api/.env && cp api/.env.sample .env | ||
- | ||
name: Submodules | ||
run: git submodule init && git submodule update --remote | ||
- | ||
name: Build Frontend | ||
run: cd api/mapas/src && npm i -g pnpm && pnpm i && pnpm run dev | ||
- name: Log in to the Container registry | ||
uses: docker/login-action@v4 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
|
||
- name: Checkout submodules | ||
run: git submodule update --init --recursive | ||
|
||
- name: Ajusta branch do MultipleLocalAuth | ||
run: cd src/plugins/MultipleLocalAuth && git checkout v3.0.0 | ||
|
||
- name: Criação da Imagem docker | ||
uses: docker/[email protected] | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
- | ||
name: Build Docker images | ||
uses: docker/bake-action@v4 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
load: true | ||
push: true | ||
tags: | | ||
secultceara/mapascultural:7.3.7 | ||
secultceara/mapascultural:latest | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
files: | | ||
compose.yaml | ||
compose.override.yaml | ||
set: | | ||
*.cache-from=type=gha,scope=${{github.ref}} | ||
*.cache-from=type=gha,scope=refs/heads/main | ||
*.cache-to=type=gha,scope=${{github.ref}},mode=max | ||
DEPLOY: | ||
needs: BUILD | ||
runs-on: mapahomolog | ||
- name: Generate artifact attestation | ||
uses: actions/attest-build-provenance@v1 | ||
with: | ||
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} | ||
subject-digest: ${{ steps.push.outputs.digest }} | ||
push-to-registry: true | ||
- | ||
name: Create private-files folder | ||
run: docker compose run --rm web mkdir var/private-files | ||
- | ||
name: Start services | ||
run: docker compose up database redis mailhog web --wait --no-build | ||
- | ||
name: Check HTTP reachability | ||
run: curl -v --fail-with-body http://localhost:5020 | ||
# - | ||
# name: Check API reachability | ||
# run: curl -vk --fail-with-body https://localhost | ||
# - | ||
# name: Check PWA reachability | ||
# run: "curl -vk --fail-with-body -H 'Accept: text/html' https://localhost" | ||
- | ||
name: Create test database | ||
run: docker compose exec -T web bin/console -e test doctrine:database:create | ||
- | ||
name: Run db-updates | ||
run: docker compose exec -T web php mapas/src/tools/apply-updates.php | ||
- | ||
name: Run migrations | ||
run: docker compose exec -T web bin/console -e test doctrine:migrations:migrate --no-interaction | ||
# - | ||
# name: Run PHPUnit | ||
# run: docker compose exec -T web bin/phpunit | ||
- | ||
name: Doctrine Schema Validator | ||
run: docker compose exec -T web bin/console -e test doctrine:schema:validate | ||
lint: | ||
name: Docker Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Pull das imagens docker | ||
run: cd /opt/docker/mapa7 && sudo docker-compose pull | ||
- name: Restart do docker-compose para atualizar o container com a nova imagem | ||
run: cd /opt/docker/mapa7 && sudo docker-compose down && sudo docker-compose up -d | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
- | ||
name: Lint Dockerfiles | ||
uses: hadolint/[email protected] | ||
with: | ||
recursive: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.