-
Notifications
You must be signed in to change notification settings - Fork 0
Conversation
.github/workflows/superset.yml
Outdated
MYSQL_USER: superset | ||
MYSQL_DATABASE: superset | ||
MYSQL_PASSWORD: superset | ||
steps: |
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.
It seems this will execute all tasks sequentially.
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.
Yes, that's one of the limitations. GitHub Actions only supports workflow level parallelization, which means each workflow would have to run the same build process again and have some duplicate code. Good news is there is cache at the workflow level, so the only thing we need to look at is how to make the build code reusable.
2da26a2
to
81a7bf0
Compare
Codecov Report
@@ Coverage Diff @@
## master #25 +/- ##
===========================================
+ Coverage 58.77% 69.33% +10.56%
===========================================
Files 385 565 +180
Lines 12239 27850 +15611
Branches 3022 3025 +3
===========================================
+ Hits 7193 19310 +12117
- Misses 4862 8355 +3493
- Partials 184 185 +1
Continue to review full report at Codecov.
|
ab89723
to
d6290d7
Compare
dab4564
to
a0393d8
Compare
04fd288
to
fd5c4ec
Compare
Test summaryRun details
View run in Cypress Dashboard ➡️ This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Dashboard |
4c55a1f
to
f8f07cc
Compare
0e3b695
to
07876ff
Compare
d43f5d9
to
33a4e8a
Compare
as replacement to Travis CI.
CATEGORY
SUMMARY
Test adding GitHub Actions per discussion in apache#9481
Everything is sequential at the moment. Will see if it's possible to use Actions Toolkit to speed up things later.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
N/A
TEST PLAN
Make sure CI check pass.
ADDITIONAL INFORMATION
REVIEWERS