Skip to content
Merged
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
22 changes: 16 additions & 6 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,27 @@ on:
- cron: "40 0 * * *"

jobs:
el8_64:
el9_64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: el8_64
packager_tag: el8-go1.24
build_package: el9_64
packager_tag: el9-go1.24
version: nightly

el9_64:
el10_64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: el10_64
packager_tag: el10-go1.24
version: nightly

el9_aarch64:
runs-on: ubuntu-latest
steps:
- name: Build
Expand All @@ -25,7 +35,7 @@ jobs:
packager_tag: el9-go1.24
version: nightly

el10_64:
el10_aarch64:
runs-on: ubuntu-latest
steps:
- name: Build
Expand Down Expand Up @@ -102,9 +112,9 @@ jobs:

upload:
needs:
- el8_64
- el9_64
- el10_64
- el10_aarch64
- linux_tarball
- windows_zip
- darwin_amd64_tarball
Expand Down
12 changes: 12 additions & 0 deletions packager/buildspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ foss:
target_arch: ppc64le
binary: ppc64le_linux

el9_aarch64:
template: el/el9
dist: el9
target_arch: aarch64
binary: aarch64_linux

el10_64:
template: el/el10
dist: el10
Expand All @@ -174,6 +180,12 @@ foss:
target_arch: ppc64le
binary: ppc64le_linux

el10_aarch64:
template: el/el10
dist: el10
target_arch: aarch64
binary: aarch64_linux

bionic_64:
template: debian/generic
target_arch: x86_64-linux-gnu
Expand Down