-
Notifications
You must be signed in to change notification settings - Fork 36
Fix github page workflow #191
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 github page workflow #191
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #191 +/- ##
==========================================
- Coverage 81.10% 80.80% -0.31%
==========================================
Files 19 19
Lines 974 974
Branches 93 93
==========================================
- Hits 790 787 -3
- Misses 184 187 +3 |
cd $HOME | ||
git clone https://github.com/emscripten-core/emsdk.git | ||
cd emsdk | ||
./emsdk install ${{ matrix.emsdk_ver }} | ||
|
||
- name: Setup emsdk |
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.
Can this be removed ? Feels like duplication to me.
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.
@anutosh491 This is not duplicating anything as far as I can see. This is a separate workflow and setups emsdk the same way the main workflow does.
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.
Wait I am confused. Looking into your file I see this (probably can expand through view file)
- name: Setup emsdk
shell: bash -l {0}
run: |
cd $HOME
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install ${{ matrix.emsdk_ver }}
- name: Setup emsdk
shell: bash -l {0}
run: |
emsdk install ${{matrix.emsdk_ver}}
I am just guessing we don't need to do this twice ?
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.
cc @mcbarton Am I missing something ? Check my comment above
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.
Mostly looks good except my comment.
Let's wait for the ci to be green before merging !
Description
Please include a summary of changes, motivation and context for this PR.
@anutosh491 The Github page workflow was broken when we stopped using condas emsdk. This PR should fix that.
Fixes # (issue)
Type of change
Please tick all options which are relevant.