From 02de37baa2e5b432950350486c0bd62eb817e239 Mon Sep 17 00:00:00 2001 From: surtur Date: Mon, 10 Jan 2022 05:02:44 +0100 Subject: [PATCH] ci: rm 'build on alpine' step building on alpine when using libc++ would probably be too much of a hassle right now. --- .drone.starlark | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.drone.starlark b/.drone.starlark index ca38a6c..1ed0161 100644 --- a/.drone.starlark +++ b/.drone.starlark @@ -47,20 +47,6 @@ def main(ctx): "make release" ] }, - { - "name": "build on alpine", - "image": "docker.io/alpine:3.14", - "pull": "always", - "depends_on": ["cppcheck"], - "commands": [ - "uname -r", - "apk add --no-cache gcc g++ cmake ninja --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing", - "ln -sv /usr/bin/ninja /usr/bin/ninja-build", - "mkdir -pv debug-alpine", - "cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -B debug-alpine", - "ninja -C debug-alpine && ls -lah ./debug-alpine && ./debug-alpine/fortuna" + "||" + "true" - ] - }, { "name": "make san", "image": "docker.io/immawanderer/fedora-cpp:linux-amd64",