Compare commits

..

No commits in common. "b1fa83971df19a7a0ebb4b4f8a233cd54d94b9ca" and "d357f8ebbf6e1a871e32dff60da5a22664d5f274" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -8,7 +8,6 @@ skip_clone: true
pipeline:
prepare:
image: 'chewingbever/vlang:latest'
pull: true
secrets: [ s3_username, s3_password ]
commands:
- git clone "$CI_REPO_REMOTE" .

View File

@ -11,17 +11,14 @@ ENV VFLAGS -cc gcc
RUN mkdir -p /opt/vlang && \
ln -s /opt/vlang/v /usr/bin/v && \
apk --no-cache add \
git make gcc curl openssl \
git make gcc \
musl-dev \
openssl-libs-static openssl-dev \
zlib-static bzip2-static xz-dev expat-static zstd-static lz4-static \
sqlite-static sqlite-dev \
libx11-dev glfw-dev freetype-dev \
libarchive-static libarchive-dev \
diffutils && \
# yes yes I know this is amd64, it's okay
wget -O /usr/local/bin/mc https://dl.min.io/client/mc/release/linux-amd64/mc && \
chmod +x /usr/local/bin/mc
diffutils
COPY . /vlang-local