Skip to content

Commit 73808c1

Browse files
committed
Drone: change default script from boost.sh to drone.sh
1 parent fe0c2c5 commit 73808c1

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

ci/drone/functions.star

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ def linux_cxx(
9191
job_env.update(environment)
9292

9393
if not buildscript:
94-
buildscript = buildtype
94+
# buildscript = buildtype
95+
# 2026 default to drone.sh
96+
buildscript = "drone"
9597

9698
steps=[
9799
{
@@ -194,7 +196,9 @@ def windows_cxx(
194196
job_env.update(environment)
195197

196198
if not buildscript:
197-
buildscript = buildtype
199+
# buildscript = buildtype
200+
# 2026 default to drone.sh
201+
buildscript = "drone"
198202
buildscript_to_run = buildscript + '.bat'
199203

200204
return {
@@ -256,7 +260,9 @@ def osx_cxx(
256260
job_env.update(environment)
257261

258262
if not buildscript:
259-
buildscript = buildtype
263+
# buildscript = buildtype
264+
# 2026 default to drone.sh
265+
buildscript = "drone"
260266

261267
if xcode_version:
262268
job_env["DEVELOPER_DIR"] = "/Applications/Xcode-" + xcode_version + ".app/Contents/Developer"
@@ -335,7 +341,9 @@ def freebsd_cxx(
335341
job_env.update(environment)
336342

337343
if not buildscript:
338-
buildscript = buildtype
344+
# buildscript = buildtype
345+
# 2026 default to drone.sh
346+
buildscript = "drone"
339347

340348
nodetmp={}
341349
nodetmp.update(node)

0 commit comments

Comments
 (0)