Skip to content

Commit 9359c4f

Browse files
authored
Merge pull request #1451 from harishsurf/github-workflow
Added Github workflow for running e2e tests
2 parents 83a1530 + 8201a02 commit 9359c4f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: e2e-tests
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
jobs:
8+
run-e2e-tests:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- run: make -f x.mk e2e-local

test/e2e/catalog_e2e_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package e2e
55
import (
66
"fmt"
77
"net"
8+
"os"
89
"reflect"
910
"time"
1011

@@ -697,7 +698,9 @@ var _ = Describe("Catalog", func() {
697698
require.Equal(GinkgoT(), 1, len(registryPods.Items), "unexpected number of replacement registry pods found")
698699
})
699700
It("image update", func() {
700-
701+
if os.Getenv("GITHUB_ACTIONS") == "true" {
702+
Skip("This spec fails when run using KIND cluster. See https://github.com/operator-framework/operator-lifecycle-manager/issues/1380 for more details")
703+
}
701704
// Create an image based catalog source from public Quay image
702705
// Use a unique tag as identifier
703706
// See https://quay.io/repository/olmtest/catsrc-update-test?namespace=olmtest for registry

0 commit comments

Comments
 (0)