Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
demo-exe committed Mar 28, 2024
1 parent 605c98a commit 7fd58b5
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ env:

jobs:
build:
# runs-on: ["self-hosted"]
runs-on: ubuntu-latest
runs-on:
- ubuntu-22.02
strategy:
matrix:
build_type: [debug, release]
Expand Down Expand Up @@ -85,8 +85,8 @@ jobs:
path: image-dev-${{ matrix.build_type }}.txt

checkstyle:
# runs-on: ["self-hosted"]
runs-on: ubuntu-latest
runs-on:
- ubuntu-22.02
steps:
- name: Clean the workspace
uses: docker://alpine
Expand All @@ -106,8 +106,9 @@ jobs:
clang-format-version: '11'

integration:
# runs-on: ["self-hosted", "hugepages"]
runs-on: ubuntu-latest
runs-on:
- self-hosted
- hugepages
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -141,8 +142,9 @@ jobs:
make retest DEV_IMAGE="${dev_image}"
e2e:
# runs-on: ["self-hosted", "hugepages"]
runs-on: ubuntu-latest
runs-on:
- self-hosted
- hugepages
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -198,8 +200,8 @@ jobs:

# dummy job for release.yaml to wait on
conclude:
# runs-on: ["self-hosted"]
runs-on: ubuntu-latest
runs-on:
- ubuntu-latest
needs:
- checkstyle
- integration
Expand All @@ -212,8 +214,8 @@ jobs:
slack:
needs:
- conclude
# runs-on: ["self-hosted"]
runs-on: ubuntu-latest
runs-on:
- ubuntu-22.02
if: always()
steps:
- name: Set status
Expand Down

0 comments on commit 7fd58b5

Please sign in to comment.