this'll fix her part 2
continuous-integration/drone/push Build is running Details

This commit is contained in:
Elizabeth Hunt 2024-10-14 19:53:20 -07:00
parent 3735959ff9
commit 946dc09cbf
Signed by untrusted user who does not match committer: simponic
GPG Key ID: 2909B9A7FF6213EE
2 changed files with 3 additions and 4 deletions

View File

@ -7,7 +7,7 @@ steps:
- name: run tests - name: run tests
image: golang image: golang
commands: commands:
- go install -v - go build -tags purego
- go test -p 1 -v ./... - go test -p 1 -v ./...
trigger: trigger:
@ -23,7 +23,7 @@ steps:
- name: run tests - name: run tests
image: golang image: golang
commands: commands:
- go install -v - go build -tags purego
- go test -p 1 -v ./... - go test -p 1 -v ./...
- name: docker - name: docker
image: plugins/docker image: plugins/docker

View File

@ -7,8 +7,7 @@ RUN go mod download
COPY . . COPY . .
RUN go install -v RUN go build -tags purego -o /app/hatecomputers
RUN go build -o /app/hatecomputers
EXPOSE 8080 EXPOSE 8080