From c07c56364b413be05fecbc1ed2b215e11fbd29b5 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Tue, 20 Aug 2024 16:19:20 +0200 Subject: [PATCH] Comment unneeded transport's action steps for debugging. --- .../run-transport-interop-test/action.yml | 106 ++++++------------ 1 file changed, 32 insertions(+), 74 deletions(-) diff --git a/.github/actions/run-transport-interop-test/action.yml b/.github/actions/run-transport-interop-test/action.yml index 8bc5b59..e7d95fd 100644 --- a/.github/actions/run-transport-interop-test/action.yml +++ b/.github/actions/run-transport-interop-test/action.yml @@ -48,50 +48,50 @@ runs: # -----< CACHED STEPS >----- - - name: Configure AWS credentials for S3 build cache - if: inputs.s3-access-key-id != '' && inputs.s3-secret-access-key != '' - run: | - echo "PUSH_CACHE=true" >> $GITHUB_ENV - shell: bash + # - name: Configure AWS credentials for S3 build cache + # if: inputs.s3-access-key-id != '' && inputs.s3-secret-access-key != '' + # run: | + # echo "PUSH_CACHE=true" >> $GITHUB_ENV + # shell: bash # This depends on where this file is within this repository. This walks up # from here to the transport-interop folder - - run: | - WORK_DIR=$(realpath "$GITHUB_ACTION_PATH/../../../transport-interop") - echo "WORK_DIR=$WORK_DIR" >> $GITHUB_OUTPUT - shell: bash - id: find-workdir + # - run: | + # WORK_DIR=$(realpath "$GITHUB_ACTION_PATH/../../../transport-interop") + # echo "WORK_DIR=$WORK_DIR" >> $GITHUB_OUTPUT + # shell: bash + # id: find-workdir - - uses: actions/setup-node@v3 - with: - node-version: 18 + # - uses: actions/setup-node@v3 + # with: + # node-version: 18 # Existence of /etc/buildkit/buildkitd.toml indicates that this is a # self-hosted runner. If so, we need to pass the config to the buildx # action. The config enables docker.io proxy which is required to # work around docker hub rate limiting. - - run: | - if test -f /etc/buildkit/buildkitd.toml; then - echo "config=/etc/buildkit/buildkitd.toml" >> $GITHUB_OUTPUT - fi - shell: bash - id: buildkit + # - run: | + # if test -f /etc/buildkit/buildkitd.toml; then + # echo "config=/etc/buildkit/buildkitd.toml" >> $GITHUB_OUTPUT + # fi + # shell: bash + # id: buildkit - - name: Set up Docker Buildx - id: buildx - uses: docker/setup-buildx-action@v2 - with: - config: ${{ steps.buildkit.outputs.config }} + # - name: Set up Docker Buildx + # id: buildx + # uses: docker/setup-buildx-action@v2 + # with: + # config: ${{ steps.buildkit.outputs.config }} - - name: Install deps - working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - run: npm ci - shell: bash + # - name: Install deps + # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} + # run: npm ci + # shell: bash - - name: Load cache and build - working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - run: npm run cache -- load - shell: bash + # - name: Load cache and build + # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} + # run: npm run cache -- load + # shell: bash # - name: Assert Git tree is clean. # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} @@ -116,48 +116,6 @@ runs: # -----< CACHED STEPS >----- - # - name: Run the test - # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - # env: - # WORKER_COUNT: ${{ inputs.worker-count }} - # EXTRA_VERSION: ${{ inputs.extra-versions }} - # NAME_FILTER: ${{ inputs.test-filter }} - # NAME_IGNORE: ${{ inputs.test-ignore }} - # run: npm run test -- --extra-version=$EXTRA_VERSION --name-filter=$NAME_FILTER --name-ignore=$NAME_IGNORE - # shell: bash - - # - name: Print the results - # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - # run: cat results.csv - # shell: bash - - # - name: Render results - # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - # run: npm run renderResults > ./dashboard.md - # shell: bash - - # - name: Show Dashboard Output - # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - # run: cat ./dashboard.md >> $GITHUB_STEP_SUMMARY - # shell: bash - - # - name: Exit with Error - # working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - # run: | - # if grep -q ":red_circle:" ./dashboard.md; then - # exit 1 - # else - # exit 0 - # fi - # shell: bash - - # - uses: actions/upload-artifact@v3 - # with: - # name: test-plans-output - # path: | - # ${{ steps.find-workdir.outputs.WORK_DIR }}/results.csv - # ${{ steps.find-workdir.outputs.WORK_DIR }}/dashboard.md - - name: Run the test working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} env: