migrated to woodpecker
All checks were successful
continuous-integration/woodpecker the build was successful
All checks were successful
continuous-integration/woodpecker the build was successful
This commit is contained in:
parent
67ecd360d0
commit
058dcea9e0
4 changed files with 35 additions and 145 deletions
138
.drone.yml
138
.drone.yml
|
@ -1,138 +0,0 @@
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: linux-amd64
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: amd64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: docker
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
purge: true
|
|
||||||
no_cache: true
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-amd64
|
|
||||||
repo: spcodes/searx
|
|
||||||
build_args:
|
|
||||||
- ARCH=amd64
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
# disable temporarily
|
|
||||||
#---
|
|
||||||
#kind: pipeline
|
|
||||||
#type: docker
|
|
||||||
#name: linux-arm
|
|
||||||
#
|
|
||||||
#platform:
|
|
||||||
# os: linux
|
|
||||||
# arch: arm
|
|
||||||
#
|
|
||||||
#steps:
|
|
||||||
# - name: docker
|
|
||||||
# image: plugins/docker
|
|
||||||
# settings:
|
|
||||||
# purge: true
|
|
||||||
# no_cache: true
|
|
||||||
# auto_tag: true
|
|
||||||
# auto_tag_suffix: linux-arm
|
|
||||||
# repo: spcodes/searx
|
|
||||||
# build_args:
|
|
||||||
# - ARCH=arm
|
|
||||||
# username:
|
|
||||||
# from_secret: USERNAME
|
|
||||||
# password:
|
|
||||||
# from_secret: PASSWORD
|
|
||||||
#
|
|
||||||
#trigger:
|
|
||||||
# branch:
|
|
||||||
# - main
|
|
||||||
# event:
|
|
||||||
# - push
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: linux-arm64
|
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: docker
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
purge: true
|
|
||||||
no_cache: true
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-arm64
|
|
||||||
repo: spcodes/searx
|
|
||||||
build_args:
|
|
||||||
- ARCH=arm64
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: manifest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: publish-version
|
|
||||||
image: plugins/manifest
|
|
||||||
settings:
|
|
||||||
ignore_missing: true
|
|
||||||
target: spcodes/searx:1.0.0
|
|
||||||
template: spcodes/searx:OS-ARCH
|
|
||||||
platforms:
|
|
||||||
- linux/amd64
|
|
||||||
- linux/arm64
|
|
||||||
# - linux/arm
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
- name: publish-latest
|
|
||||||
image: plugins/manifest
|
|
||||||
settings:
|
|
||||||
ignore_missing: true
|
|
||||||
target: spcodes/searx
|
|
||||||
template: spcodes/searx:OS-ARCH
|
|
||||||
platforms:
|
|
||||||
- linux/amd64
|
|
||||||
- linux/arm64
|
|
||||||
# - linux/arm
|
|
||||||
username:
|
|
||||||
from_secret: USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: PASSWORD
|
|
||||||
|
|
||||||
depends_on:
|
|
||||||
- linux-amd64
|
|
||||||
- linux-arm64
|
|
||||||
# - linux-arm
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
|
||||||
- push
|
|
32
.woodpecker.yml
Normal file
32
.woodpecker.yml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
pipeline:
|
||||||
|
docker:
|
||||||
|
image: plugins/docker
|
||||||
|
secrets:
|
||||||
|
- DOCKER_USERNAME
|
||||||
|
- DOCKER_PASSWORD
|
||||||
|
repo: spcodes/searx
|
||||||
|
tags:
|
||||||
|
- 1.0.0
|
||||||
|
- latest
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
cr:
|
||||||
|
image: plugins/docker
|
||||||
|
secrets:
|
||||||
|
- source: CR_USERNAME
|
||||||
|
target: DOCKER_USERNAME
|
||||||
|
- source: CR_PASSWORD
|
||||||
|
target: DOCKER_PASSWORD
|
||||||
|
registry: cr.sp-codes.de
|
||||||
|
repo: cr.sp-codes.de/searx
|
||||||
|
tags:
|
||||||
|
- 1.0.0
|
||||||
|
- latest
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
event:
|
||||||
|
- push
|
|
@ -1,8 +1,4 @@
|
||||||
ARG ARCH
|
FROM alpine:3.14.2@sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a
|
||||||
FROM alpine:3.14.2@sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a AS base-amd64
|
|
||||||
FROM arm32v7/alpine:3.14.2@sha256:e12ff876f0075740ed3d7bdf788107ae84c1b3dd6dc98b3baea41088aba5236f AS base-arm
|
|
||||||
FROM arm64v8/alpine:3.14.2@sha256:b06a5cf61b2956088722c4f1b9a6f71dfe95f0b1fe285d44195452b8a1627de7 AS base-arm64
|
|
||||||
FROM base-${ARCH}
|
|
||||||
|
|
||||||
RUN addgroup searx && adduser -D -h /usr/local/searx -s /bin/sh -G searx searx
|
RUN addgroup searx && adduser -D -h /usr/local/searx -s /bin/sh -G searx searx
|
||||||
|
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
"^Dockerfile$",
|
"^Dockerfile$",
|
||||||
"^.drone.yml$"
|
"^.woodpecker.yml$"
|
||||||
],
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"\\s+ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s+",
|
"\\s+ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s+",
|
||||||
"\\s+target:\\s*spcodes\\/searx:(?<currentValue>.*?)\\s+"
|
"\\s+repo:\\s*\\S*\\/searx\\s+tags:[-\\s]+(?<currentValue>.*?)\\s+"
|
||||||
],
|
],
|
||||||
"versioningTemplate": "loose",
|
"versioningTemplate": "loose",
|
||||||
"depNameTemplate": "searx/searx",
|
"depNameTemplate": "searx/searx",
|
||||||
|
|
Reference in a new issue