Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go

go:
- 1.11.x
- 1.19.x
script:
- make test
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
FROM golang:1.11-alpine as builder
FROM golang:1.19-alpine as builder

WORKDIR /go/src/github.com/kubesphere/s2irun
COPY cmd/ cmd/
COPY pkg/ pkg/
COPY vendor/ vendor/
COPY go.mod go.sum ./

# Build
RUN CGO_ENABLED=0 GOOS=linux go build -a -o builder github.com/kubesphere/s2irun/cmd
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o builder ./cmd/main.go

FROM alpine:3.11

Expand Down
323 changes: 0 additions & 323 deletions glide.lock

This file was deleted.

Loading