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

Run e2e-long-test in EIO provided Containerized Org-Level Runners #711

Closed
Closed
Show file tree
Hide file tree
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
36 changes: 32 additions & 4 deletions .github/workflows/e2e-long-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@ env:
jobs:
e2e_import_gitops:
name: E2E Tests - Import Gitops
runs-on: [self-hosted, linux]
# Use the BCI Node.js container when running in EIO's provided runners,
# because the Node.js runtime is needed. If using public GH provided runners,
# a container isn't necessary, because they already provide the runtime, but
# the BCI image can still be used anyway.
container: registry.suse.com/bci/nodejs:20
# For when running in EIO's provided runners. More details are available in
# https://github.com/rancherlabs/eio/wiki/GitHub-Actions-Runners.
runs-on: org-${{ github.repository_owner_id }}-amd64-k8s
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
Expand Down Expand Up @@ -64,7 +71,14 @@ jobs:
commit: true
e2e_v2prov:
name: E2E Tests - v2prov
runs-on: [self-hosted, linux]
# Use the BCI Node.js container when running in EIO's provided runners,
# because the Node.js runtime is needed. If using public GH provided runners,
# a container isn't necessary, because they already provide the runtime, but
# the BCI image can still be used anyway.
container: registry.suse.com/bci/nodejs:20
# For when running in EIO's provided runners. More details are available in
# https://github.com/rancherlabs/eio/wiki/GitHub-Actions-Runners.
runs-on: org-${{ github.repository_owner_id }}-amd64-k8s
needs: e2e_import_gitops
steps:
- name: Checkout
Expand Down Expand Up @@ -97,7 +111,14 @@ jobs:
commit: true
e2e_update_labels:
name: E2E Tests - Update labels
runs-on: [self-hosted, linux]
# Use the BCI Node.js container when running in EIO's provided runners,
# because the Node.js runtime is needed. If using public GH provided runners,
# a container isn't necessary, because they already provide the runtime, but
# the BCI image can still be used anyway.
container: registry.suse.com/bci/nodejs:20
# For when running in EIO's provided runners. More details are available in
# https://github.com/rancherlabs/eio/wiki/GitHub-Actions-Runners.
runs-on: org-${{ github.repository_owner_id }}-amd64-k8s
needs: e2e_v2prov
steps:
- name: Checkout
Expand Down Expand Up @@ -130,7 +151,14 @@ jobs:
commit: true
e2e_embedded_capi_disabled:
name: E2E Tests - Embedded CAPI Disabled
runs-on: [self-hosted, linux]
# Use the BCI Node.js container when running in EIO's provided runners,
# because the Node.js runtime is needed. If using public GH provided runners,
# a container isn't necessary, because they already provide the runtime, but
# the BCI image can still be used anyway.
container: registry.suse.com/bci/nodejs:20
# For when running in EIO's provided runners. More details are available in
# https://github.com/rancherlabs/eio/wiki/GitHub-Actions-Runners.
runs-on: org-${{ github.repository_owner_id }}-amd64-k8s
needs: e2e_update_labels
steps:
- name: Checkout
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/e2e-short-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@ env:

jobs:
e2e:
runs-on: org--rancher--amd64-containers
container: ubuntu:22.04
# Use the BCI Node.js container when running in EIO's provided runners,
# because the Node.js runtime is needed. If using public GH provided runners,
# a container isn't necessary, because they already provide the runtime, but
# the BCI image can still be used anyway.
container: registry.suse.com/bci/nodejs:20
# For when running in EIO's provided runners. More details are available in
# https://github.com/rancherlabs/eio/wiki/GitHub-Actions-Runners.
runs-on: org-${{ github.repository_owner_id }}-amd64-k8s
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
Expand Down