Update the l10n files #5432
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
--- | |
name: Continuous integration | |
on: | |
push: | |
pull_request_target: | |
types: [labeled] | |
env: | |
PROJECT: demo | |
HAS_SECRETS: ${{ secrets.HAS_SECRETS }} | |
# SENTRY_PROJECT: geomapfish-demo | |
# SENTRY_ENVIRONMENT: prod-2-8 | |
jobs: | |
main: | |
runs-on: ubuntu-22.04 | |
name: Continuous integration | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
repository: camptocamp/demo_geomapfish_data | |
ref: master | |
path: data | |
- uses: camptocamp/initialise-gopass-summon-action@v2 | |
with: | |
ci-gpg-private-key: ${{ secrets.CI_GPG_PRIVATE_KEY }} | |
github-gopass-ci-token: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }} | |
patterns: docker | |
if: env.HAS_SECRETS == 'HAS_SECRETS' | |
- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} | |
- run: python3 -m pip install --user --requirement=ci/requirements.txt | |
- run: touch env.secrets | |
- name: Checks | |
run: c2cciutils-checks | |
- name: Build | |
run: ./build | |
- name: Application checks | |
run: make checks | |
- name: Initialize the acceptance tests | |
run: make acceptance-init | |
- run: c2cciutils-docker-logs | |
if: always() | |
- name: Run the acceptance tests | |
run: make acceptance | |
- run: c2cciutils-docker-logs | |
if: always() | |
- run: make acceptance-dev | |
- run: c2cciutils-docker-logs | |
if: always() | |
- run: docker-compose --file=docker-compose.yaml --file=docker-compose-db.yaml --file=docker-compose.override.sample.yaml up -d | |
- name: Run the acceptance tests on dev | |
run: make acceptance | |
- run: c2cciutils-docker-logs | |
if: always() | |
# Rebuild the image with the right schema | |
- run: rm env.secrets | |
- run: touch env.secrets | |
- name: Build | |
run: ./build --no-pull | |
- name: Publish | |
run: c2cciutils-publish | |
# - name: Create Sentry release | |
# uses: getsentry/action-release@v1 | |
# env: | |
# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
# SENTRY_ORG: camptocamp | |
# SENTRY_PROJECT: ${{ env.SENTRY_PROJECT }} | |
# with: | |
# environment: ${{ env.SENTRY_ENVIRONMENT }} | |
# if: github.ref == 'refs/heads/prod-2-8' |