Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
ARG BASE_VARIANT="ubuntu"
ARG UBUNTU_VERSION="22.04"
ARG DEBIAN_VERSION="bookworm"
ARG ALPINE_VERSION="3.18"
ARG XX_VERSION="1.4.0"
ARG ALPINE_VERSION="3.22"
ARG XX_VERSION="1.6.1"

ARG OSX_SDK="MacOSX14.5.sdk"
ARG OSX_SDK_URL="https://github.com/joseluisq/macosx-sdks/releases/download/14.5/${OSX_SDK}.tar.xz"
Expand Down Expand Up @@ -162,7 +162,7 @@
FROM test-${BASE_VARIANT} AS test-osxcross
COPY --link --from=build /out/osxcross /osxcross
ENV PATH="/osxcross/bin:$PATH"
ENV LD_LIBRARY_PATH="/osxcross/lib:$LD_LIBRARY_PATH"

Check warning on line 165 in Dockerfile

View workflow job for this annotation

GitHub Actions / test (osxcross, ubuntu)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 165 in Dockerfile

View workflow job for this annotation

GitHub Actions / test (osxcross, alpine)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 165 in Dockerfile

View workflow job for this annotation

GitHub Actions / test (osxcross, debian)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
WORKDIR /src
RUN --mount=type=bind,source=./test <<EOT
set -e
Expand Down