mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
Run e2e test container on edgserver with privileged
The seccomp filter applied by docker presumably stops curl from working correctly as the glibc changed the way it creates processes (switch from clone to clone3). The backwards compatibility layer of glibc does not work correctly with docker's seccomp filter, making it necessary to give the container privileged access.
This commit is contained in:
parent
c42e79ecfe
commit
919a2165ae
1
.github/workflows/e2e-test-azure-weekly.yml
vendored
1
.github/workflows/e2e-test-azure-weekly.yml
vendored
@ -14,6 +14,7 @@ jobs:
|
||||
runs-on: [self-hosted, edgserver]
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||
|
2
.github/workflows/e2e-test-azure.yml
vendored
2
.github/workflows/e2e-test-azure.yml
vendored
@ -9,6 +9,7 @@ jobs:
|
||||
runs-on: [self-hosted, edgserver]
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||
@ -41,6 +42,7 @@ jobs:
|
||||
runs-on: [self-hosted, edgserver]
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||
|
1
.github/workflows/e2e-test-gcp-weekly.yml
vendored
1
.github/workflows/e2e-test-gcp-weekly.yml
vendored
@ -14,6 +14,7 @@ jobs:
|
||||
runs-on: [self-hosted, edgserver]
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||
|
2
.github/workflows/e2e-test-gcp.yml
vendored
2
.github/workflows/e2e-test-gcp.yml
vendored
@ -9,6 +9,7 @@ jobs:
|
||||
runs-on: [self-hosted, edgserver]
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||
@ -41,6 +42,7 @@ jobs:
|
||||
runs-on: [self-hosted, edgserver]
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||
|
Loading…
Reference in New Issue
Block a user