Compare commits

...

3 Commits
18.3.0 ... main

Author SHA1 Message Date
dfe1899813 try jenkins
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 6m59s
2025-03-06 16:06:38 +01:00
2c40597de6 try jenkins
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Has been cancelled
2025-03-06 16:03:07 +01:00
c51a0870b5
push to 18.4.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 12m57s
2025-01-10 12:13:14 +01:00
2 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/rust:1-alpine3.20 AS builder
FROM docker.io/rust:1-alpine3.21 AS builder
RUN apk --no-cache add \
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 mkdir /atuin
ENV VERSION=v18.3.0
ENV VERSION=v18.4.0
RUN git clone https://github.com/atuinsh/atuin.git /work
WORKDIR /work

12
Jenkinsfile vendored Normal file
View File

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