NAS-136807 / 25.10 / Fix experimental builds (#889)

* Revert "Make all builds non-experimental by default (#888)"

This reverts commit 78e3f46499.

* dont build experimental builds by default
This commit is contained in:
Caleb St. John
2025-07-21 12:16:29 -04:00
committed by GitHub
parent 78e3f46499
commit a5f5ee6163
3 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ pipeline {
}
stage('Packages') {
steps {
sh 'cd src && make packages'
sh 'cd src && env TRUENAS_EXPERIMENTAL=n make packages'
}
}
stage('Update') {

View File

@@ -28,7 +28,7 @@ pipeline {
}
stage('Packages') {
steps {
sh 'cd ${BDIR} && make packages'
sh 'cd ${BDIR} && env TRUENAS_EXPERIMENTAL=n make packages'
}
}
stage('Update') {

View File

@@ -52,7 +52,7 @@ TRY_BRANCH_OVERRIDE = get_env_variable('TRY_BRANCH_OVERRIDE', str)
VERSION = get_env_variable('TRUENAS_VERSION', str, f'{_VERS}-{BUILD_TIME_OBJ.strftime("%Y%m%d-%H%M%S")}')
TRUENAS_VENDOR = get_env_variable('TRUENAS_VENDOR', str)
PRESERVE_ISO = get_env_variable('PRESERVE_ISO', bool, False)
TRUENAS_EXPERIMENTAL = get_env_variable('TRUENAS_EXPERIMENTAL', bool, False)
TRUENAS_EXPERIMENTAL = get_env_variable('TRUENAS_EXPERIMENTAL', bool, True)
# We will get branch overrides and identity file path overrides from here