-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.workflow-patcher.yml
More file actions
40 lines (38 loc) · 1.55 KB
/
.workflow-patcher.yml
File metadata and controls
40 lines (38 loc) · 1.55 KB
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
# Please note: This file is work-in-progress.
# Currently project BFSPY needs to manually maintain workflow slow-checks.yaml
# as some crucial changes cannot be automated, yet.
workflows:
- name: slow-checks
step_customizations:
- action: REPLACE
job: run-integration-tests
step_id: run-integration-tests
content:
- name: Run Integration Tests
id: run-integration-tests
run: >
poetry run -- nox -s test:integration -- -s --coverage
--backend=${{ matrix.backend }}
--db-version ${{ matrix.exasol-version }}
env:
SAAS_HOST: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }}
SAAS_ACCOUNT_ID: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }}
SAAS_PAT: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }}
- action: REPLACE
job: run-integration-tests
step_id: upload-artifacts
content:
- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v7
with:
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
path: .coverage
include-hidden-files: true
- action: INSERT_AFTER
job: run-integration-tests
step_id: check-out-repository
content:
- name: Allow unprivileged user namespaces
id: allow-unprivileged-user-namespaces
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0