-
Notifications
You must be signed in to change notification settings - Fork 7
60 lines (58 loc) · 2.56 KB
/
nightly-jahiaSnapshot.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
name: Nightly - Jahia Snapshot
on:
workflow_dispatch:
schedule:
- cron: "30 0 * * *"
jobs:
integration-tests-standalone:
name: Integration Tests (Standalone)
runs-on: self-hosted
timeout-minutes: 45
steps:
- uses: jahia/jahia-modules-action/helper@v2
- uses: KengoTODA/actions-setup-docker-compose@main
with:
version: "1.29.2"
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
- uses: actions/checkout@v4
- uses: jahia/jahia-modules-action/integration-tests@v2
with:
module_id: siteSettings
incident_service: siteSettings-JahiaSN
timeout_minutes: 20
testrail_project: Site Settings Module
tests_manifest: provisioning-manifest-snapshot.yml
jahia_image: jahia/jahia-ee-dev:8-SNAPSHOT
should_use_build_artifacts: false
should_skip_artifacts: true
should_skip_notifications: false
should_skip_testrail: false
should_skip_zencrepes: false
github_artifact_name: siteSettings-${{ github.run_number }}
jahia_artifact_name: siteSettings-${{ github.run_number }}
bastion_ssh_private_key: ${{ secrets.BASTION_SSH_PRIVATE_KEY_JAHIACI }}
jahia_license: ${{ secrets.JAHIA_LICENSE_8X_FULL }}
docker_username: ${{ secrets.DOCKERHUB_USERNAME }}
docker_password: ${{ secrets.DOCKERHUB_PASSWORD }}
nexus_username: ${{ secrets.NEXUS_USERNAME }}
nexus_password: ${{ secrets.NEXUS_PASSWORD }}
testrail_username: ${{ secrets.TESTRAIL_USERNAME }}
testrail_password: ${{ secrets.TESTRAIL_PASSWORD }}
tests_report_name: Test report (Standalone)
incident_pagerduty_api_key: ${{ secrets.INCIDENT_PAGERDUTY_API_KEY }}
incident_pagerduty_reporter_email: ${{ secrets.INCIDENT_PAGERDUTY_REPORTER_EMAIL }}
incident_pagerduty_reporter_id: ${{ secrets.INCIDENT_PAGERDUTY_REPORTER_ID }}
incident_google_spreadsheet_id: ${{ secrets.INCIDENT_GOOGLE_SPREADSHEET_ID }}
incident_google_client_email: ${{ secrets.INCIDENT_GOOGLE_CLIENT_EMAIL }}
incident_google_api_key_base64: ${{ secrets.INCIDENT_GOOGLE_PRIVATE_KEY_BASE64 }}
zencrepes_secret: ${{ secrets.ZENCREPES_WEBHOOK_SECRET }}
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Tests Report (Standalone)
path: tests/artifacts/results/xml_reports/**/*.xml
reporter: java-junit
fail-on-error: "false"