Skip to content

Commit 983f19f

Browse files
authored
Fix nightly FTL test by downgrading python version (#12055)
1 parent a5ed756 commit 983f19f

File tree

8 files changed

+24
-0
lines changed

8 files changed

+24
-0
lines changed

.github/workflows/abtesting.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ jobs:
118118
steps:
119119
- uses: actions/checkout@v3
120120
- uses: ruby/setup-ruby@v1
121+
- uses: actions/setup-python@v4
122+
with:
123+
python-version: '3.7'
121124
- name: Setup quickstart
122125
env:
123126
LEGACY: true

.github/workflows/crashlytics.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ jobs:
128128
steps:
129129
- uses: actions/checkout@v3
130130
- uses: ruby/setup-ruby@v1
131+
- uses: actions/setup-python@v4
132+
with:
133+
python-version: '3.7'
131134
- name: Setup quickstart
132135
run: scripts/setup_quickstart.sh crashlytics
133136
env:

.github/workflows/dynamiclinks.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ jobs:
120120
steps:
121121
- uses: actions/checkout@v3
122122
- uses: ruby/setup-ruby@v1
123+
- uses: actions/setup-python@v4
124+
with:
125+
python-version: '3.7'
123126
- name: Setup quickstart
124127
run: scripts/setup_quickstart.sh DynamicLinks
125128
- name: Install Secret GoogleService-Info.plist

.github/workflows/functions.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ jobs:
145145
steps:
146146
- uses: actions/checkout@v3
147147
- uses: ruby/setup-ruby@v1
148+
- uses: actions/setup-python@v4
149+
with:
150+
python-version: '3.7'
148151
- name: Setup quickstart
149152
run: scripts/setup_quickstart.sh functions
150153
- name: install secret googleservice-info.plist

.github/workflows/installations.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ jobs:
123123
steps:
124124
- uses: actions/checkout@v3
125125
- uses: ruby/setup-ruby@v1
126+
- uses: actions/setup-python@v4
127+
with:
128+
python-version: '3.7'
126129
- name: Setup quickstart
127130
run: scripts/setup_quickstart.sh installations
128131
- name: Copy mock plist

.github/workflows/messaging.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ jobs:
160160
steps:
161161
- uses: actions/checkout@v3
162162
- uses: ruby/setup-ruby@v1
163+
- uses: actions/setup-python@v4
164+
with:
165+
python-version: '3.7'
163166
- name: Setup quickstart
164167
run: scripts/setup_quickstart.sh messaging
165168
- name: Install Secret GoogleService-Info.plist

.github/workflows/performance.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ jobs:
103103
steps:
104104
- uses: actions/checkout@v3
105105
- uses: ruby/setup-ruby@v1
106+
- uses: actions/setup-python@v4
107+
with:
108+
python-version: '3.7'
106109
- name: Setup quickstart
107110
run: scripts/setup_quickstart.sh performance
108111
- name: Install Secret GoogleService-Info.plist

.github/workflows/storage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ jobs:
147147
steps:
148148
- uses: actions/checkout@v3
149149
- uses: ruby/setup-ruby@v1
150+
- uses: actions/setup-python@v4
151+
with:
152+
python-version: '3.7'
150153
- name: Setup quickstart
151154
run: scripts/setup_quickstart.sh storage
152155
- name: Install Secret GoogleService-Info.plist

0 commit comments

Comments
 (0)