Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on: # yamllint disable-line rule:truthy

jobs:
create_release:
runs-on: zededa-ubuntu-2204
runs-on: [kratos, zededa-ubuntu-2204]
outputs:
release_id: ${{ steps.create_release.outputs.release_id }}
upload_url: ${{ steps.create_release.outputs.upload_url }}
Expand All @@ -41,7 +41,7 @@ jobs:
echo "release_id=$release_id" >> "$GITHUB_OUTPUT"
echo "upload_url=$upload_url" >> "$GITHUB_OUTPUT"
build:
runs-on: zededa-ubuntu-2204
runs-on: [kratos, zededa-ubuntu-2204]
needs: create_release
strategy:
fail-fast: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
platform: nvidia-jp6
- arch: amd64
platform: evaluation
runs-on: ${{ matrix.arch == 'arm64' && 'zededa-ubuntu-2204-arm64' || 'zededa-ubuntu-2204' }}
runs-on: ${{ matrix.arch == 'arm64' && fromJSON('["vps", "zededa-ubuntu-2204-arm64"]') || fromJSON('["kratos", "zededa-ubuntu-2204"]') }}

steps:
- name: Starting Report
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- arch: amd64
hv: k
platform: generic
runs-on: ${{ matrix.arch == 'arm64' && 'zededa-ubuntu-2204-arm64' || 'zededa-ubuntu-2204' }}
runs-on: ${{ matrix.arch == 'arm64' && fromJSON('["vps", "zededa-ubuntu-2204-arm64"]') || fromJSON('["kratos", "zededa-ubuntu-2204"]') }}

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:

- name: Build EVE ${{ matrix.hv }}-${{ matrix.arch }}-${{ matrix.platform }}
run: |
make V=1 ROOTFS_VERSION="$VERSION" PLATFORM=${{ matrix.platform }} HV=${{ matrix.hv }} ZARCH=${{ matrix.arch }} eve
make V=1 ROOTFS_VERSION="$VERSION" PLATFORM=${{ matrix.platform }} HV=${{ matrix.hv }} ZARCH=${{ matrix.arch }} pkgs eve
- name: Post eve build report
run: |
echo Disk usage
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/buildondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
packages:
# Only run for the default branch
if: github.ref_name == github.event.repository.default_branch
runs-on: ${{ matrix.os }}
runs-on: [kratos, "${{ matrix.os }}"]
strategy:
fail-fast: false
matrix:
include:
- os: zededa-ubuntu-2204
- os: zededa-ubuntu-2204-arm64
arch: arm64
- os: zededa-ubuntu-2204
arch: amd64
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
needs: packages # all packages for all platforms must be built first
# Only run for the default branch
if: github.ref_name == github.event.repository.default_branch
runs-on: zededa-ubuntu-2204
runs-on: ${{ matrix.arch == 'arm64' && fromJSON('["kratos", "zededa-ubuntu-2204-arm64"]') || fromJSON('["kratos", "zededa-ubuntu-2204"]') }}
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildyetusondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
yetus-image:
# Only run for the default branch
if: github.ref_name == github.event.repository.default_branch
runs-on: zededa-ubuntu-2204
runs-on: [kratos, zededa-ubuntu-2204]
permissions:
contents: read
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on: # yamllint disable-line rule:truthy

jobs:
test:
runs-on: zededa-ubuntu-2204
runs-on: [kratos, zededa-ubuntu-2204]
env:
REPO_NAME: ${{ github.event.repository.full_name }}
GH_REF: ${{ github.ref }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# 1) non-ARM packages, fully parallel
packages-non-arm:
if: github.event.repository.full_name == 'lf-edge/eve'
runs-on: ${{ matrix.os }}
runs-on: [kratos, "${{ matrix.os }}"]
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
# 2) ARM packages, serialized
packages-arm:
if: github.event.repository.full_name == 'lf-edge/eve'
runs-on: ${{ matrix.os }}
runs-on: [kratos, "${{ matrix.os }}"]
timeout-minutes: 1440 # It takes more time when building arm64 on an amd64 runner
strategy:
fail-fast: false
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
eve:
if: github.event.repository.full_name == 'lf-edge/eve'
needs: [packages-non-arm, packages-arm]
runs-on: zededa-ubuntu-2204
runs-on: ${{ matrix.arch == 'arm64' && fromJSON('["vps", "zededa-ubuntu-2204-arm64"]') || fromJSON('["kratos", "zededa-ubuntu-2204"]') }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
manifest:
if: github.event.repository.full_name == 'lf-edge/eve'
needs: [packages-non-arm, packages-arm]
runs-on: zededa-ubuntu-2204
runs-on: [kratos, zededa-ubuntu-2204]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
Expand Down
1 change: 1 addition & 0 deletions pkg/pillar/cmd/zedagent/zedagent.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ func Run(ps *pubsub.PubSub, loggerArg *logrus.Logger, logArg *base.LogObject, ar
zedagentCtx.fatalFlag = *zedagentCtx.fatalPtr
zedagentCtx.startTime = time.Now()

// nothing ever changes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does this change have to do with the runners?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's just some change in the source code to trigger the build workflow
this whole PR is for test purposes only and should not be merged

flowlogQueue := make(chan *flowlog.FlowMessage, flowlogQueueCap)
triggerDeviceInfo := make(chan destinationBitset, 1)
triggerHwInfo := make(chan destinationBitset, 1)
Expand Down
Loading