Compare commits

...

5 Commits

Author SHA1 Message Date
a428846708 Add .drone.yml 2022-10-26 16:15:35 +02:00
3ab2bb4c1f Add .drone.yml
Some checks reported errors
continuous-integration/drone Build encountered an error
2022-10-26 11:25:53 +02:00
34f9ca51b7 Merge pull request 'Configure Renovate' (#1) from renovate/configure into main
Reviewed-on: https://git.front.kjuulh.io/kjuulh/cuddle-go-plan/pulls/1
2022-10-25 21:00:40 +00:00
f56817f753 Add renovate.json 2022-10-25 20:46:52 +00:00
08a6b4dda7 with go plan 2022-09-12 22:19:31 +02:00
4 changed files with 16 additions and 8 deletions

9
.drone.yml Executable file
View File

@@ -0,0 +1,9 @@
kind: pipeline
type: docker
name: "test"
steps:
- name: test
image: harbor.front.kjuulh.io/docker-proxy/library/bash:latest
commands:
- echo 'Run tests'

3
renovate.json Normal file
View File

@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}

View File

@@ -1,11 +1,7 @@
FROM rust:1.62.1-slim-buster FROM golang
RUN apt-get update && apt-get upgrade -y
RUN apt-get install libssl-dev
RUN apt-get install -y -q build-essential curl
COPY . . COPY . .
RUN cargo build RUN go build cmd/main.go
CMD [ "cargo", "run" ] CMD [ "main" ]

View File

@@ -1,2 +1,2 @@
target/
.cuddle/ .cuddle/
main/