From 953f6195587af1348f5087278b5d7969218d212d Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 22 Jul 2026 17:01:32 +0300 Subject: [PATCH] New builds --- .gitignore | 1 - Jenkinsfile | 2 -- builds.json | 18 ------------------ 3 files changed, 21 deletions(-) delete mode 100644 builds.json diff --git a/.gitignore b/.gitignore index 9607867..c527276 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,3 @@ venv* retropikzel/wasm/plus.sld retropikzel/*.c retropikzel/*.meta -!builds.json diff --git a/Jenkinsfile b/Jenkinsfile index ce0f707..628a062 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,6 @@ pipeline { image "${build.image}" } } - /* build.stages.each { stage -> stage("${stage.name}") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { @@ -41,7 +40,6 @@ pipeline { } } } - */ } } } diff --git a/builds.json b/builds.json deleted file mode 100644 index edc55f8..0000000 --- a/builds.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "builds": [ - { - "name": "Chibi", - "image": "schemers/chibi:head", - "stages": [ - { - "name": "Init", - "cmd": "apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev && git clone https://github.com/ashinn/chibi-scheme.git --depth=1 && make -j8 -C chibi-scheme && make -j8 -C chibi-scheme install && snow-chibi install retropikzel.compile-r7rs" - }, - { - "name": "tap", - "cmd": "COMPILE_R7RS=chibi compile-r7rs -o tap retropikzel/tap/test.scm && ./tap" - } - ] - } - ] -}