Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix nightly FTL test by downgrading python version #12055

Merged
merged 2 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/abtesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
env:
LEGACY: true
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/crashlytics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
run: scripts/setup_quickstart.sh crashlytics
env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dynamiclinks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
run: scripts/setup_quickstart.sh DynamicLinks
- name: Install Secret GoogleService-Info.plist
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
run: scripts/setup_quickstart.sh functions
- name: install secret googleservice-info.plist
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/installations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
run: scripts/setup_quickstart.sh installations
- name: Copy mock plist
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/messaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
run: scripts/setup_quickstart.sh messaging
- name: Install Secret GoogleService-Info.plist
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
run: scripts/setup_quickstart.sh performance
- name: Install Secret GoogleService-Info.plist
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/storage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup quickstart
run: scripts/setup_quickstart.sh storage
- name: Install Secret GoogleService-Info.plist
Expand Down
Loading