Skip to content

Commit bdf01e6

Browse files
committed
test
1 parent 178bdfa commit bdf01e6

File tree

1 file changed

+7
-22
lines changed

1 file changed

+7
-22
lines changed

.github/workflows/rebaseline-tests.yml

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,20 @@ jobs:
1515
uses: actions/checkout@v4
1616
with:
1717
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
3718
- name: Rebaseline tests
3819
run: |
39-
./bootstrap
4020
git config user.name emscripten-bot
4121
git config user.email [email protected]
42-
./tools/maint/rebaseline_tests.py
22+
echo "TEST" >> README.md
23+
git add README.md
24+
git checkout -b testing origin/main
25+
git commit -m "Testing"
26+
#./bootstrap
27+
#./tools/maint/rebaseline_tests.py
4328
- name: Create PR
4429
id: cpr
4530
run: |
46-
git push origin
31+
git push origin testing
4732
gh pr create --fill
4833
env:
4934
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)