From 893e9e3eacd23685a513d293ca151cbe72f2576a Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Mon, 20 Jan 2025 08:23:39 -0700 Subject: [PATCH] CI: Add nightly builds for the Distribution preset --- .github/workflows/nightly-lagom.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/nightly-lagom.yml b/.github/workflows/nightly-lagom.yml index 43356b308f5..f7a9c367eb3 100644 --- a/.github/workflows/nightly-lagom.yml +++ b/.github/workflows/nightly-lagom.yml @@ -24,6 +24,28 @@ jobs: toolchain: ['Clang'] clang_plugins: [false] + include: + - os_name: 'Linux' + os: ubuntu-24.04 + arch: 'x86_64' + build_preset: 'Distribution_CI' + toolchain: 'GNU' + clang_plugins: false + + - os_name: 'macOS' + os: macos-15 + arch: 'arm64' + build_preset: 'Distribution_CI' + toolchain: 'Clang' + clang_plugins: false + + - os_name: 'Linux' + os: ubuntu-24.04-arm + arch: 'arm64' + build_preset: 'Distribution_CI' + toolchain: 'Clang' + clang_plugins: false + uses: ./.github/workflows/lagom-template.yml with: toolchain: ${{ matrix.toolchain }}