This commit is contained in:
parent
a9a5c42c4d
commit
bebfd8d7eb
2 changed files with 30 additions and 0 deletions
29
.woodpecker.yml
Normal file
29
.woodpecker.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
pipeline:
|
||||
publish:
|
||||
image: registry.nulo.in/sutty/containers-gem-compiler:${ALPINE_VERSION}
|
||||
pull: true
|
||||
commands:
|
||||
- bulk-compiler
|
||||
- git add built/
|
||||
- git config user.name Woodpecker
|
||||
- git config user.email ci@nulo.in
|
||||
- git remote add nulo ssh://_gitea@nulo.in:420/Sutty/gems.git
|
||||
- git commit -m "[skip ci] built gems"
|
||||
- apk add --no-cache openssh-client
|
||||
- mkdir ~/.ssh/
|
||||
- echo '[nulo.in]:420 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHgHIbf5/jkeyLMndnWlEO12DPj41YPqkmz+aIreVOsP' >> ~/.ssh/known_hosts
|
||||
- eval $(ssh-agent -s)
|
||||
- echo "$${SSH_KEY}" | tr -d '\r' | ssh-add -
|
||||
- git push nulo ${WOODPECKER_BRANCH}
|
||||
secrets:
|
||||
- HTTP_BASIC_USER
|
||||
- HTTP_BASIC_PASSWORD
|
||||
- SSH_KEY
|
||||
when:
|
||||
branch: antifascista
|
||||
event: push
|
||||
|
||||
matrix:
|
||||
ALPINE_VERSION:
|
||||
- 3.13.6
|
||||
# - 3.14.2
|
1
build/nokogiri/1.12.5
Normal file
1
build/nokogiri/1.12.5
Normal file
|
@ -0,0 +1 @@
|
|||
EXTRA_GEMS="mini_portile2:2.6.1"
|
Loading…
Reference in a new issue