From 280ba93cf1f9a32609a375b6a07529c70c0a749b Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Wed, 4 Feb 2026 00:21:31 +0900 Subject: [PATCH] hmm --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 7b74261..7477638 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,6 +18,9 @@ pipeline { stage("Build") { parallel { stage("Build for Linux 64-bit") { + agent { + label "built-in" + } steps { sh("./Makefile.pl --enable-opengl --enable-vulkan --without-vulkan-string-helper") sh("make clean") @@ -25,6 +28,9 @@ pipeline { } } stage("Build for Windows 32-bit") { + agent { + label "built-in" + } steps { sh("./Makefile.pl --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=i686-w64-mingw32") sh("make clean") @@ -32,6 +38,9 @@ pipeline { } } stage("Build for Windows 64-bit") { + agent { + label "built-in" + } steps { sh("./Makefile.pl --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=x86_64-w64-mingw32") sh("make clean")