-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
remove py from fe e2e test build #7361
Conversation
@@ -326,13 +326,6 @@ jobs: | |||
with: | |||
node-version: '14.7' | |||
|
|||
- uses: actions/setup-python@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FE tests don't need it!
@@ -414,13 +407,6 @@ jobs: | |||
with: | |||
node-version: '14.7' | |||
|
|||
- uses: actions/setup-python@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kube acceptance test don't need it!
@@ -193,14 +193,14 @@ jobs: | |||
${{ secrets.CACHE_VERSION }}-npm-${{ runner.os }}- | |||
|
|||
# this intentionally does not use restore-keys so we don't mess with gradle caching | |||
- name: Gradle and Python Caching | |||
- name: Gradle Caching |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
platform build doesn't need to think about python caching anymore!
@@ -52,13 +52,6 @@ jobs: | |||
with: | |||
node-version: '14.7' | |||
|
|||
- uses: actions/setup-python@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these kube tests don't need python either!
@@ -193,14 +193,14 @@ jobs: | |||
${{ secrets.CACHE_VERSION }}-npm-${{ runner.os }}- | |||
|
|||
# this intentionally does not use restore-keys so we don't mess with gradle caching | |||
- name: Gradle and Python Caching | |||
- name: Gradle Caching | |||
uses: actions/cache@v2 | |||
with: | |||
path: | | |||
~/.gradle/caches | |||
~/.gradle/wrapper | |||
**/.venv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
**/.venv |
.github/workflows/gradle.yml
Outdated
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
**/.venv | ||
key: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }} | ||
key: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/requirements.txt') }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
key: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/requirements.txt') }} | |
key: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/package-lock.json') }} }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
What
Noticed in this PR: #7219 that the build was failing because python didn't install properly when setting up the FE E2E Tests. Those tests son't need python anyway, so... bye bye. Knocked it out a couple other places where I thought it was no longer needed.