From 8091ca0c3305e46bc08170c5b4c5b64adf0c2c2a Mon Sep 17 00:00:00 2001 From: "Michael Gene Brockus (Dreamer)" Date: Mon, 25 Nov 2024 13:22:28 -0600 Subject: [PATCH] rm alpine --- .github/ciimage/Dockerfile.alpine | 30 ------------------------------ .github/workflows/meson_ci.yml | 2 +- code/logic/marking.c | 1 - 3 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 .github/ciimage/Dockerfile.alpine diff --git a/.github/ciimage/Dockerfile.alpine b/.github/ciimage/Dockerfile.alpine deleted file mode 100644 index 740c525..0000000 --- a/.github/ciimage/Dockerfile.alpine +++ /dev/null @@ -1,30 +0,0 @@ -# Use a specific Alpine base image -FROM alpine:3.14 - -# Set environment variables to avoid interaction -ENV TZ=UTC - -# Install system dependencies and clean up -RUN apk update && \ - apk add --no-cache \ - build-base \ - clang \ - gcc \ - g++ \ - gdb \ - llvm \ - libgcc \ - libstdc++ \ - rust \ - cargo \ - wget \ - meson \ - ninja \ - python3 \ - py3-pip \ - git - -# Set environment variables -ENV CC=/usr/bin/gcc -ENV CXX=/usr/bin/g++ -ENV LD_LIBRARY_PATH=/usr/local/lib diff --git a/.github/workflows/meson_ci.yml b/.github/workflows/meson_ci.yml index 786feb1..026ad8e 100644 --- a/.github/workflows/meson_ci.yml +++ b/.github/workflows/meson_ci.yml @@ -217,7 +217,7 @@ jobs: strategy: matrix: - distro: [ubuntu, fedora, archlinux, debian, alpine] + distro: [ubuntu, fedora, archlinux, debian] steps: - name: Checkout code diff --git a/code/logic/marking.c b/code/logic/marking.c index ce627f7..a3a1d39 100644 --- a/code/logic/marking.c +++ b/code/logic/marking.c @@ -22,7 +22,6 @@ #include #include - #if defined(_WIN32) #include static LARGE_INTEGER frequency;