Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TECH-1521: Temporary disable release tests #118

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 55 additions & 53 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,56 +60,58 @@ jobs:
reporter: java-junit
fail-on-error: 'false'

integration-tests-rl:
name: Integration Tests (Jahia RL)
runs-on: self-hosted
strategy:
fail-fast: false
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@v3
with:
node-version: 'lts/*'
- uses: actions/checkout@v3
- uses: jahia/jahia-modules-action/integration-tests@v2
with:
module_id: serverSettings
jahia_image: jahia/jahia-ee:8
incident_service: serverSettings-JahiaRL
testrail_project: ServerSettings Module
tests_manifest: provisioning-manifest-snapshot.yml
should_use_build_artifacts: false
should_skip_artifacts: true
should_skip_notifications: true
should_skip_testrail: false
should_skip_zencrepes: true
github_artifact_name: server-settings-jahia-rl-${{ github.run_number }}
jahia_artifact_name: server-settings-jahia-rl-${{ 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'
# Temporarily disabled until the release of version 8.2 of Jahia see ticket TECH-1521
#
# integration-tests-rl:
# name: Integration Tests (Jahia RL)
# runs-on: self-hosted
# strategy:
# fail-fast: false
# 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@v3
# with:
# node-version: 'lts/*'
# - uses: actions/checkout@v3
# - uses: jahia/jahia-modules-action/integration-tests@v2
# with:
# module_id: serverSettings
# jahia_image: jahia/jahia-ee:8
# incident_service: serverSettings-JahiaRL
# testrail_project: ServerSettings Module
# tests_manifest: provisioning-manifest-snapshot.yml
# should_use_build_artifacts: false
# should_skip_artifacts: true
# should_skip_notifications: true
# should_skip_testrail: false
# should_skip_zencrepes: true
# github_artifact_name: server-settings-jahia-rl-${{ github.run_number }}
# jahia_artifact_name: server-settings-jahia-rl-${{ 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'
Loading