Remove all polyfill.io #974
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: | |
env: | |
PROJECT: demo | |
# Requires CI_GPG_PRIVATE_KEY and GOPASS_CI_GITHUB_TOKEN secrets. | |
OPENSHIFT_PROJECT: gs-gmf-demo | |
HELM_RELEASE_NAMES: '2.4' # List of branch that should be deployed on helm | |
PATH: /bin:/usr/bin:/usr/local/bin:/home/runner/.local/bin | |
SUMMON_PROVIDER: /usr/local/bin/gopass | |
OPENSHIFT_URL: https://api.openshift-ch-1.camptocamp.com/ | |
OPENSHIFT_RELEASE: prod-2-4 # Optional, name of the OpenShift release | |
jobs: | |
config: | |
runs-on: ubuntu-18.04 | |
name: Config | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build config | |
run: ./docker-run make docker-build-config | |
- uses: camptocamp/initialise-gopass-summon-action@v1 | |
with: | |
ci-gpg-private-key: ${{secrets.CI_GPG_PRIVATE_KEY}} | |
github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}} | |
if: "env.HELM_RELEASE_NAMES != ''" | |
- run: scripts/deploy-docker --image=config --no-trigger | |
if: "env.HELM_RELEASE_NAMES != ''" | |
- run: scripts/deploy-docker --image=config --service=github | |
if: "env.HELM_RELEASE_NAMES != ''" | |
geoportal: | |
runs-on: ubuntu-18.04 | |
name: Geoportal | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run checks | |
run: ./docker-run make checks | |
- name: Build geoportal | |
run: ./docker-run make docker-build-geoportal | |
- uses: camptocamp/initialise-gopass-summon-action@v1 | |
with: | |
ci-gpg-private-key: ${{secrets.CI_GPG_PRIVATE_KEY}} | |
github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}} | |
if: "env.HELM_RELEASE_NAMES != ''" | |
- run: scripts/deploy-docker --image=geoportal --no-trigger | |
if: "env.HELM_RELEASE_NAMES != ''" | |
- run: scripts/deploy-docker --image=geoportal --service=github | |
if: "env.HELM_RELEASE_NAMES != ''" |