From f0926715bcb2e852fa227a047a0c6c95364ce831 Mon Sep 17 00:00:00 2001 From: Esteban Borai Date: Thu, 2 Nov 2023 19:54:04 +0000 Subject: [PATCH] chore: disable fvm on ci (#3660) Disable FVM tests while Mock Server is introduced. Refer to https://github.com/infinyon/fluvio/issues/3657 for Mock Server Tracking. --- .github/workflows/ci.yml | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dbe473fe10..2be7490f354 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1052,22 +1052,24 @@ jobs: run: make CDK_BIN=~/bin/cdk cli-cdk-smoke # test fvm - - name: Download artifact - fvm - if: matrix.test == 'fvm' - uses: actions/download-artifact@v3 - with: - name: fvm-x86_64-unknown-linux-musl - path: ~/bin - - name: mark fvm - if: matrix.test == 'fvm' - run: | - chmod +x ~/bin/fvm - echo "~/bin" >> $GITHUB_PATH - - name: Run FVM smoke tests - if: matrix.test == 'fvm' - timeout-minutes: 20 - run: | - make FVM_BIN=~/bin/fvm HUB_REGISTRY_URL="https://hub-dev.infinyon.cloud" cli-fvm-smoke + # - name: Download artifact - fvm + # if: matrix.test == 'fvm' + # uses: actions/download-artifact@v3 + # with: + # name: fvm-x86_64-unknown-linux-musl + # path: ~/bin + + # - name: mark fvm + # if: matrix.test == 'fvm' + # run: | + # chmod +x ~/bin/fvm + # echo "~/bin" >> $GITHUB_PATH + + # - name: Run FVM smoke tests + # if: matrix.test == 'fvm' + # timeout-minutes: 20 + # run: | + # make FVM_BIN=~/bin/fvm HUB_REGISTRY_URL="https://hub-dev.infinyon.cloud" cli-fvm-smoke - name: Run diagnostics if: ${{ !success() }}