File tree Expand file tree Collapse file tree 1 file changed +8
-22
lines changed
Expand file tree Collapse file tree 1 file changed +8
-22
lines changed Original file line number Diff line number Diff line change @@ -14,36 +14,22 @@ jobs:
1414 - name : Checkout repo
1515 uses : actions/checkout@v4
1616 with :
17+ fetch-depth : 0
1718 submodules : true
18- - name : pip install
19- run : |
20- which python3
21- python3 --version
22- python3 -m pip install -r requirements-dev.txt
23- - name : Install emsdk
24- run : |
25- EM_CONFIG=$HOME/emsdk/.emscripten
26- echo $EM_CONFIG
27- curl -# -L -o ~/emsdk-main.tar.gz https://github.com/emscripten-core/emsdk/archive/main.tar.gz
28- tar -C ~ -xf ~/emsdk-main.tar.gz
29- mv ~/emsdk-main ~/emsdk
30- cd ~/emsdk
31- ./emsdk install tot
32- ./emsdk activate tot
33- echo "JS_ENGINES = [NODE_JS]" >> $EM_CONFIG
34- echo "final config:"
35- cat $EM_CONFIG
36- echo "EM_CONFIG=$EM_CONFIG" >> $GITHUB_ENV
3719 - name : Rebaseline tests
3820 run : |
39- ./bootstrap
4021 git config user.name emscripten-bot
4122 git config user.email [email protected] 42- ./tools/maint/rebaseline_tests.py
23+ echo "TEST" >> README.md
24+ git add README.md
25+ git checkout -b testing ${{ github.ref_name }}
26+ git commit -m "Testing"
27+ #./bootstrap
28+ #./tools/maint/rebaseline_tests.py
4329 - name : Create PR
4430 id : cpr
4531 run : |
46- git push origin
32+ git push origin testing
4733 gh pr create --fill
4834 env :
4935 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments