Skip to content

Commit

Permalink
fix(ci): disable -x flag when running upgrade tests (#11646)
Browse files Browse the repository at this point in the history
It seems that the -x flag triggered an issue in the upgrade test
script, but it is not entirely clear how only the release/3.3.x
branch was affected.  Disable -x for now to make sure that we're
not seeing the problem in other branches

(cherry picked from commit 613fb31)

Co-authored-by: Hans Hübner <hans.huebner@gmail.com>
  • Loading branch information
team-gateway-bot and hanshuebner authored Sep 25, 2023
1 parent ddccfe9 commit 60fdabc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/upgrade-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
- master
- release/*
- test-please/*
workflow_dispatch:
# cancel previous runs if new commits are pushed to the PR, but run for each commit on master
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down Expand Up @@ -49,4 +50,4 @@ jobs:

- name: Run upgrade tests
run: |
bash -x ./scripts/upgrade-tests/test-upgrade-path.sh
bash ./scripts/upgrade-tests/test-upgrade-path.sh

0 comments on commit 60fdabc

Please sign in to comment.