diff options
author | John Baldwin <jhb@FreeBSD.org> | 2023-12-07 22:32:08 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2023-12-07 22:32:08 +0000 |
commit | 9101746a6cce90314ad03c7ff06398a5f68d0cc7 (patch) | |
tree | 2cf124b0cb6dda98d510aa9ba8ffd81f7601803d | |
parent | 8a8e86b819dcaf60ed0858f7b00cb733c9ae3aca (diff) | |
download | src-9101746a6cce90314ad03c7ff06398a5f68d0cc7.tar.gz src-9101746a6cce90314ad03c7ff06398a5f68d0cc7.zip |
Cirrus CI: Add manual jobs for amd64 and aarch64 using GCC 13
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D42840
-rw-r--r-- | .cirrus.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 3abf6898a66d..85853d2a62ea 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -54,6 +54,15 @@ task: TOOLCHAIN: amd64-gcc12 TOOLCHAIN_PKG: ${TOOLCHAIN} EXTRA_MAKE_FLAGS: -s + - name: amd64-gcc13 World and kernel build and boot smoke test (manual) + only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' + trigger_type: manual + env: + TARGET: amd64 + TARGET_ARCH: amd64 + TOOLCHAIN: amd64-gcc13 + TOOLCHAIN_PKG: ${TOOLCHAIN} + EXTRA_MAKE_FLAGS: -s - name: aarch64-gcc12 World and kernel build and boot smoke test (manual) only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' trigger_type: manual @@ -63,6 +72,15 @@ task: TOOLCHAIN: aarch64-gcc12 TOOLCHAIN_PKG: ${TOOLCHAIN} EXTRA_MAKE_FLAGS: -s + - name: aarch64-gcc13 World and kernel build and boot smoke test (manual) + only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' + trigger_type: manual + env: + TARGET: arm64 + TARGET_ARCH: aarch64 + TOOLCHAIN: aarch64-gcc13 + TOOLCHAIN_PKG: ${TOOLCHAIN} + EXTRA_MAKE_FLAGS: -s - name: amd64-gcc12 World and kernel build and boot smoke test (FreeBSD repo) only_if: $CIRRUS_REPO_FULL_NAME == 'freebsd/freebsd-src' && $CIRRUS_BRANCH =~ 'pull/.*' env: |