-
Notifications
You must be signed in to change notification settings - Fork 4
131 lines (117 loc) · 3.33 KB
/
staging.yml
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: Test and build staging-image
on:
push:
branches: [master]
jobs:
tests:
strategy:
fail-fast: false
matrix:
spec:
[
comparison,
degreeReform,
form,
formNotifications,
happypath,
IAMpermissions,
management,
misc,
ospa,
permissions,
report,
sidebar,
yearselector,
evaluation,
metaevaluation,
homepage,
trackingpage,
facultymonitoringoverview,
]
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: npm ci
run: npm ci --no-audit --no-fund
- name: docker compose up -d
run: docker compose up -d
- name: seed db
run: docker exec lomake_dev bash -c "node index.js seed"
- name: Run cypress tests with retry
uses: nick-fields/retry@v3
with:
timeout_minutes: 6
max_attempts: 2
command: ./node_modules/.bin/cypress run --headless --browser chrome --spec "cypress/integration/${{ matrix.spec }}.spec.js"
- uses: actions/upload-artifact@v4
if: failure()
with:
name: Cypress videos
path: /home/runner/work/lomake/lomake/cypress/videos
- uses: actions/upload-artifact@v4
if: failure()
with:
name: Cypress screenshots
path: /home/runner/work/lomake/lomake/cypress/screenshots
build:
name: 'Build and publish staging image'
#needs:
# - tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: lomake
tags: staging ${{ github.sha }}
containerfiles: |
./Dockerfile
build-args: |
BASE_PATH=/tilannekuva/
SENTRY_ENVIRONMENT=staging
extra-args: |
--ulimit nofile=4096:4096
- name: Push to quay.io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: quay.io/toska
username: toska+github
password: ${{ secrets.QUAY_IO_TOKEN }}
report_success:
name: 'Report deployment success to Tilku-channel'
runs-on: ubuntu-latest
needs:
- tests
- build
if: success()
steps:
- name: 'Send notification to Slack'
uses: UniversityOfHelsinkiCS/slackbot-action@v1.4.2
with:
webhook-url: ${{ secrets.WEBHOOK_URL }}
message-type: deployment
softa-url: https://toska-staging.cs.helsinki.fi/tilannekuvalomake
deployment-target: staging
report_failure:
name: 'Report test failure to Tilku-channel'
runs-on: ubuntu-latest
needs:
- tests
- build
if: failure()
steps:
- name: 'Send notification to Slack'
uses: UniversityOfHelsinkiCS/slackbot-action@v1.4.2
with:
webhook-url: ${{ secrets.WEBHOOK_URL }}
message-type: test-failure