-
Notifications
You must be signed in to change notification settings - Fork 16
85 lines (68 loc) · 2.23 KB
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
name: Continuous integration
on:
push:
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@v4
- uses: actions/checkout@v4
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'