diff --git a/.github/workflows/backend_tests.yml b/.github/workflows/backend_tests.yml index 7c8edbfc34..0212ece21b 100644 --- a/.github/workflows/backend_tests.yml +++ b/.github/workflows/backend_tests.yml @@ -18,5 +18,18 @@ jobs: cache-dependency-path: | src/jetstream/go.sum + - name: Create extra_plugins.go + run: | + echo 'package main + // This file is auto-generated - DO NOT EDIT + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/autoscaler" + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/cloudfoundry" + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/cfapppush" + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/cfappssh" + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/userinvite" + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/analysis" + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/kubernetes" + import _ "github.com/cloudfoundry-incubator/stratos/src/jetstream/plugins/monocular"' > src/jetstream/extra_plugins.go + - name: Run tests run: build/bk-build.sh test