Compare commits

..

No commits in common. "main" and "18.3.0" have entirely different histories.
main ... 18.3.0

2 changed files with 2 additions and 14 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/rust:1-alpine3.21 AS builder FROM docker.io/rust:1-alpine3.20 AS builder
RUN apk --no-cache add \ RUN apk --no-cache add \
git \ git \
@ -13,7 +13,7 @@ ENV CARGO_BUILD_RUSTFLAGS="-C target-feature=+crt-static"
RUN echo "atuin:x:2222:2222:Linux User,,,:/atuin:/atuin" > /passwd RUN echo "atuin:x:2222:2222:Linux User,,,:/atuin:/atuin" > /passwd
RUN mkdir /atuin RUN mkdir /atuin
ENV VERSION=v18.4.0 ENV VERSION=v18.3.0
RUN git clone https://github.com/atuinsh/atuin.git /work RUN git clone https://github.com/atuinsh/atuin.git /work
WORKDIR /work WORKDIR /work

12
Jenkinsfile vendored
View File

@ -1,12 +0,0 @@
pipeline {
agent {
any { image 'node:22.14.0-alpine3.21' }
}
stages {
stage('Test') {
steps {
sh 'node --eval "console.log(process.platform,process.env.CI)"'
}
}
}
}