-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,31 +15,16 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: pip install | ||
run: | | ||
which python3 | ||
python3 --version | ||
python3 -m pip install -r requirements-dev.txt | ||
- name: Install emsdk | ||
run: | | ||
EM_CONFIG=$HOME/emsdk/.emscripten | ||
echo $EM_CONFIG | ||
curl -# -L -o ~/emsdk-main.tar.gz https://github.com/emscripten-core/emsdk/archive/main.tar.gz | ||
tar -C ~ -xf ~/emsdk-main.tar.gz | ||
mv ~/emsdk-main ~/emsdk | ||
cd ~/emsdk | ||
./emsdk install tot | ||
./emsdk activate tot | ||
echo "JS_ENGINES = [NODE_JS]" >> $EM_CONFIG | ||
echo "final config:" | ||
cat $EM_CONFIG | ||
echo "EM_CONFIG=$EM_CONFIG" >> $GITHUB_ENV | ||
- name: Rebaseline tests | ||
run: | | ||
./bootstrap | ||
git config user.name emscripten-bot | ||
git config user.email [email protected] | ||
./tools/maint/rebaseline_tests.py | ||
echo "TEST" >> README.md | ||
git add README.md | ||
git checkout -b testing | ||
git commit -m "Testing" | ||
#./bootstrap | ||
#./tools/maint/rebaseline_tests.py | ||
- name: Create PR | ||
id: cpr | ||
run: | | ||
|