File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
- name : test-scripts
1
+ name : upstream-tests
2
2
on :
3
3
pull_request :
4
4
paths :
5
- - ' scripts/**'
6
- - ' Makefile'
5
+ - ' **'
6
+ - ' !doc/contributors/**'
7
+ - ' !doc/design/**'
7
8
schedule :
8
9
- cron : ' 0 0 * * *' # daily to pick up releases
9
10
jobs :
11
+ image-build :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Check out the repo
15
+ uses : actions/checkout@v2
16
+ - name : Build the container image
17
+ uses : docker/build-push-action@v1
18
+ with :
19
+ repository : operator-framework/olm
20
+ dockerfile : ./upstream.Dockerfile
21
+ push : false
10
22
run-local-minikube :
11
23
runs-on : ubuntu-latest
12
24
steps :
13
25
- uses : actions/checkout@v2
14
26
- run : |
27
+ sudo apt-get install conntrack
15
28
curl -sLo minikube "$(curl -sL https://api.github.com/repos/kubernetes/minikube/releases/latest | jq -r '[.assets[] | select(.name == "minikube-linux-amd64")] | first | .browser_download_url')"
16
29
chmod +x minikube
17
30
sudo mv minikube /bin/
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ COPY vendor vendor
15
15
COPY go.mod go.mod
16
16
COPY go.sum go.sum
17
17
COPY cmd cmd
18
+ COPY util util
18
19
COPY test test
19
20
RUN make build
20
21
RUN make build-util
You can’t perform that action at this time.
0 commit comments