diff --git a/.github/actions/e2e-install-native/action.yml b/.github/actions/e2e-native/action.yml similarity index 99% rename from .github/actions/e2e-install-native/action.yml rename to .github/actions/e2e-native/action.yml index 70b4556f2f..ef93efbded 100644 --- a/.github/actions/e2e-install-native/action.yml +++ b/.github/actions/e2e-native/action.yml @@ -15,7 +15,7 @@ # limitations under the License. # --------------------------------------------------------------------------- -name: e2e-install-native +name: e2e-native description: 'End-to-End tests for install use-cases (namespaced rather than global operator so no global operator install) with native builds' inputs: diff --git a/.github/actions/e2e-install-native/exec-tests.sh b/.github/actions/e2e-native/exec-tests.sh similarity index 100% rename from .github/actions/e2e-install-native/exec-tests.sh rename to .github/actions/e2e-native/exec-tests.sh diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml index 2b7b2ed6af..0460c6953e 100644 --- a/.github/workflows/native.yml +++ b/.github/workflows/native.yml @@ -68,7 +68,7 @@ concurrency: cancel-in-progress: true jobs: - install-native-high-memory: + native-high-memory: runs-on: macos-12 @@ -86,14 +86,14 @@ jobs: -p "${{ github.event.inputs.skip-problematic }}" \ -q "${{ github.event.inputs.log-level }}" \ -t "${{ github.event.inputs.test-filters }}" - - name: Native smoke tests - uses: ./.github/actions/e2e-install-native + - name: higher memory smoke tests + uses: ./.github/actions/e2e-native with: cluster-config-data: ${{ secrets.E2E_CLUSTER_CONFIG }} cluster-kube-config-data: ${{ secrets.E2E_KUBE_CONFIG }} high-memory: 'true' - install-native: + native-lower-memory: runs-on: macos-12 @@ -111,8 +111,8 @@ jobs: -p "${{ github.event.inputs.skip-problematic }}" \ -q "${{ github.event.inputs.log-level }}" \ -t "${{ github.event.inputs.test-filters }}" - - name: Native smoke tests - uses: ./.github/actions/e2e-install-native + - name: lower memory smoke tests + uses: ./.github/actions/e2e-native with: cluster-config-data: ${{ secrets.E2E_CLUSTER_CONFIG }} cluster-kube-config-data: ${{ secrets.E2E_KUBE_CONFIG }}