test: fix CAP_KILL e2e test to be backwards-compatible with openjd-se… #138
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mainline E2E Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'mainline' | |
jobs: | |
WindowsIntegrationTests: | |
name: Windows Integration Tests | |
runs-on: windows-latest | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Hatch | |
run: | | |
pip install --upgrade hatch | |
- name: Run Windows Integration Tests | |
run: hatch run windows-integ-test | |
MainlineLinuxE2ETest: | |
name: Linux E2E Test | |
permissions: | |
id-token: write | |
contents: read | |
uses: aws-deadline/.github/.github/workflows/reusable_e2e_test.yml@mainline | |
secrets: inherit | |
with: | |
repository: ${{ github.event.repository.name }} | |
branch: mainline | |
environment: mainline | |
os: linux | |
concurrency: | |
group: linuxe2e | |
MainlineWindowsE2ETest: | |
name: Windows E2E Test | |
permissions: | |
id-token: write | |
contents: read | |
uses: aws-deadline/.github/.github/workflows/reusable_e2e_test.yml@mainline | |
secrets: inherit | |
with: | |
repository: ${{ github.event.repository.name }} | |
branch: mainline | |
environment: mainline | |
os: windows | |
concurrency: | |
group: windowse2e |