1 2compute_engine_instance: 3 # Image list available via 4 # gcloud compute images list --project freebsd-org-cloud-dev --no-standard-images 5 platform: freebsd 6 image_project: freebsd-org-cloud-dev 7 image: freebsd-13-2-release-amd64 8 cpu: 8 9 memory: 8G 10 disk: 40 11 12env: 13 PKG_FORMAT: tar 14 15task: 16 matrix: 17 - name: amd64-llvm15 World and kernel build and boot smoke test 18 only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' 19 trigger_type: manual 20 env: 21 TARGET: amd64 22 TARGET_ARCH: amd64 23 TOOLCHAIN: llvm15 24 TOOLCHAIN_PKG: ${TOOLCHAIN}-lite 25 - name: amd64-llvm16 World and kernel build and boot smoke test 26 env: 27 TARGET: amd64 28 TARGET_ARCH: amd64 29 TOOLCHAIN: llvm16 30 TOOLCHAIN_PKG: ${TOOLCHAIN}-lite 31 - name: arm64-llvm15 World and kernel build and boot smoke test 32 only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' 33 trigger_type: manual 34 env: 35 TARGET: arm64 36 TARGET_ARCH: aarch64 37 TOOLCHAIN: llvm15 38 TOOLCHAIN_PKG: ${TOOLCHAIN} 39 - name: arm64-llvm16 World and kernel build and boot smoke test 40 only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' 41 trigger_type: manual 42 env: 43 TARGET: arm64 44 TARGET_ARCH: aarch64 45 TOOLCHAIN: llvm16 46 TOOLCHAIN_PKG: ${TOOLCHAIN} 47 - name: amd64-gcc12 World and kernel build and boot smoke test (manual) 48 only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' 49 trigger_type: manual 50 env: 51 TARGET: amd64 52 TARGET_ARCH: amd64 53 TOOLCHAIN: amd64-gcc12 54 TOOLCHAIN_PKG: ${TOOLCHAIN} 55 EXTRA_MAKE_FLAGS: -s 56 - name: aarch64-gcc12 World and kernel build and boot smoke test (manual) 57 only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' 58 trigger_type: manual 59 env: 60 TARGET: arm64 61 TARGET_ARCH: aarch64 62 TOOLCHAIN: aarch64-gcc12 63 TOOLCHAIN_PKG: ${TOOLCHAIN} 64 EXTRA_MAKE_FLAGS: -s 65 - name: amd64-gcc12 World and kernel build and boot smoke test (FreeBSD repo) 66 only_if: $CIRRUS_REPO_FULL_NAME == 'freebsd/freebsd-src' 67 env: 68 TARGET: amd64 69 TARGET_ARCH: amd64 70 TOOLCHAIN: amd64-gcc12 71 TOOLCHAIN_PKG: ${TOOLCHAIN} 72 EXTRA_MAKE_FLAGS: -s 73 timeout_in: 120m 74 install_script: 75 - sh .cirrus-ci/pkg-install.sh ${TOOLCHAIN_PKG} git-lite 76 77 setup_script: 78 - uname -a 79 - gpart show 80 - df -m 81 - pkg --version 82 - pw useradd user 83 - mkdir -p /usr/obj/$(pwd -P) 84 - chown user:user /usr/obj/$(pwd -P) 85 86 build_world_script: 87 - su user -c "make -j$(sysctl -n hw.ncpu) ${EXTRA_MAKE_FLAGS} CROSS_TOOLCHAIN=${TOOLCHAIN} WITHOUT_TOOLCHAIN=yes buildworld" 88 89 build_kernel_script: 90 - su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=${TOOLCHAIN} WITHOUT_TOOLCHAIN=yes buildkernel" 91 92 package_script: 93 - su user -c "make CROSS_TOOLCHAIN=${TOOLCHAIN} WITHOUT_TOOLCHAIN=yes packages" 94 95 package_check_script: 96 - su user -c "/usr/libexec/flua tools/pkgbase/metalog_reader.lua -c /usr/obj/$(pwd -P)/${TARGET}.${TARGET_ARCH}/worldstage/METALOG" 97 98 test_script: 99 - sh .cirrus-ci/pkg-install.sh qemu-nox11 100 - sh tools/boot/ci-qemu-test.sh 101 102 make_sysent_script: 103 # Check that make sysent results were committed if required 104 - make sysent 105 - if ! git diff --exit-code; then printf "\n>>> Generated sysent files not updated, run make sysent <<<\n"; false; fi 106 107 include_ldirs_script: 108 # Check that includes/Makefile refers to existing directories 109 - if ! make -C include/ check-ldirs; then printf "\n>>> include/Makefile lists nonexistant directories <<<\n"; false; fi 110 111 makeman_script: 112 # Check that the committed src.conf.5 matches the one generated by 113 # tools/build/options/makeman (modulo the date which always updates) 114 # XXX: This script is slow so keep it last 115 - (make makeman 2> /tmp/makeman.out); cat /tmp/makeman.out 116 - if ! git diff --exit-code --ignore-matching-lines "^.Dd" share/man/man5/src.conf.5; then printf "\n>>> src.conf.5 was not updated as required <<<\n"; false; fi 117 - if grep -q "no description found" /tmp/makeman.out; then printf "\n>>> Missing description files <<<\n"; false; fi 118 119 post_script: 120 - df -m 121 - du -m -s /usr/obj 122