Skip to content

Commit

Permalink
workflow: add 6.1 and 6.3 kernels
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeldtinoco committed May 8, 2023
1 parent 439e698 commit b4d6aca
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/debug-shell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ on:
- jammy519-arm64
- focal419
- focal419-arm64
- jammy6127
- jammy6301
jobs:
alma418:
if: ${{ github.event.inputs.distro == 'alma418' }}
Expand Down Expand Up @@ -250,3 +252,29 @@ jobs:
submodules: true
- name: "Executing Debug Shell"
run: ./tests/remotessh.sh
jammy6127-core:
if: ${{ github.event.inputs.distro == 'jammy6127' }}
runs-on:
[
"github-self-hosted_ami-0469948ef83c039e9_${{ github.event.number }}-${{ github.run_id }}_x64c",
]
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
submodules: true
- name: "Executing Debug Shell"
run: ./tests/remotessh.sh
jammy6301-core:
if: ${{ github.event.inputs.distro == 'jammy6301' }}
runs-on:
[
"github-self-hosted_ami-05bc39f8670e0c226_${{ github.event.number }}-${{ github.run_id }}_x64c",
]
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
submodules: true
- name: "Executing Debug Shell"
run: ./tests/remotessh.sh
64 changes: 64 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -678,3 +678,67 @@ jobs:
- name: "Instrumentation"
run: |
./tests/e2e-instrumentation-test.sh
#
# JAMMY v6.1
#
jammy6127-core:
name: Jammy 6.1.27 X64
needs:
- unit-tests
- verify-signatures
- verify-tools
env:
HOME: "/tmp/root"
GOPATH: "/tmp/go"
GOCACHE: "/tmp/go-cache"
GOROOT: "/usr/local/go"
runs-on:
[
"github-self-hosted_ami-0469948ef83c039e9_${{ github.event.number }}-${{ github.run_id }}_x64c",
]
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
submodules: true
- name: "Kernel"
run: |
./tests/kerneltest.sh
- name: "Network"
run: |
./tests/e2e-net-test.sh
- name: "Instrumentation"
run: |
./tests/e2e-instrumentation-test.sh
#
# JAMMY v6.3
#
jammy6301-core:
name: Jammy 6.3.1 X64
needs:
- unit-tests
- verify-signatures
- verify-tools
env:
HOME: "/tmp/root"
GOPATH: "/tmp/go"
GOCACHE: "/tmp/go-cache"
GOROOT: "/usr/local/go"
runs-on:
[
"github-self-hosted_ami-05bc39f8670e0c226_${{ github.event.number }}-${{ github.run_id }}_x64c",
]
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
submodules: true
- name: "Kernel"
run: |
./tests/kerneltest.sh
- name: "Network"
run: |
./tests/e2e-net-test.sh
- name: "Instrumentation"
run: |
./tests/e2e-instrumentation-test.sh

0 comments on commit b4d6aca

Please sign in to comment.