Stop supporting Mac OS

I never use that anyway...

Signed-off-by: Jacob Kiers <code@kiers.eu>
This commit is contained in:
Jacob Kiers 2024-06-22 14:17:52 +02:00
parent 7a96634b5a
commit 88db7be75f

View File

@ -6,11 +6,6 @@ ENV ZIG_VERSION=${ZIG_VERSION}
COPY zig/install-dependencies.sh /tmp/install-dependencies.sh COPY zig/install-dependencies.sh /tmp/install-dependencies.sh
RUN chmod +x /tmp/install-dependencies.sh && /tmp/install-dependencies.sh && rm /tmp/install-dependencies.sh RUN chmod +x /tmp/install-dependencies.sh && /tmp/install-dependencies.sh && rm /tmp/install-dependencies.sh
# Install macOS SDKs
RUN curl -L "https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.9.sdk.tar.xz" | tar -J -x -C /opt
RUN curl -L "https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.3.sdk.tar.xz" | tar -J -x -C /opt
ENV SDKROOT=/opt/MacOSX11.3.sdk
# Install Rust targets # Install Rust targets
RUN rustup target add \ RUN rustup target add \
x86_64-unknown-linux-gnu \ x86_64-unknown-linux-gnu \
@ -19,7 +14,4 @@ RUN rustup target add \
aarch64-unknown-linux-musl \ aarch64-unknown-linux-musl \
arm-unknown-linux-gnueabihf \ arm-unknown-linux-gnueabihf \
arm-unknown-linux-musleabihf \ arm-unknown-linux-musleabihf \
x86_64-apple-darwin \
aarch64-apple-darwin \
x86_64-pc-windows-gnu x86_64-pc-windows-gnu