Skip to content

Commit c53f84e

Browse files
authored
Try fix
1 parent 353c9ae commit c53f84e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/deploy-github-page.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ jobs:
9292
9393
# Run tests in browsers
9494
echo "Running test_xeus_cpp in Firefox"
95-
${{ env.PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --browser-args="--headless" test_xeus_cpp.html
95+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --browser-args="--headless" test_xeus_cpp.html
9696
echo "Running test_xeus_cpp in Google Chrome"
97-
${{ env.PREFIX }}/bin/emrun.py --browser="Google Chrome" --kill_exit --browser-args="--headless" test_xeus_cpp.html
97+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="Google Chrome" --kill_exit --browser-args="--headless" test_xeus_cpp.html
9898
else
9999
export ARCHITECHURE=$(uname -m)
100100
# Install Google Chrome
@@ -113,9 +113,9 @@ jobs:
113113

114114
# Run tests in browsers
115115
echo "Running test_xeus_cpp in Firefox"
116-
${{ env.PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
116+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
117117
echo "Running test_xeus_cpp in Google Chrome"
118-
${{ env.PREFIX }}/bin/emrun.py --browser="google-chrome" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
118+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="google-chrome" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
119119
fi
120120
node test_xeus_cpp.js
121121
timeout-minutes: 4

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,9 @@ jobs:
276276
277277
# Run tests in browsers
278278
echo "Running test_xeus_cpp in Firefox"
279-
${{ env.PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
279+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
280280
echo "Running test_xeus_cpp in Google Chrome"
281-
${{ env.PREFIX }}/bin/emrun.py --browser="Google Chrome" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
281+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="Google Chrome" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
282282
else
283283
export ARCHITECHURE=$(uname -m)
284284
# Install Google Chrome
@@ -297,9 +297,9 @@ jobs:
297297

298298
# Run tests in browsers
299299
echo "Running test_xeus_cpp in Firefox"
300-
${{ env.PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
300+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="firefox" --kill_exit --timeout 60 --browser-args="--headless" test_xeus_cpp.html
301301
echo "Running test_xeus_cpp in Google Chrome"
302-
${{ env.PREFIX }}/bin/emrun.py --browser="google-chrome" --kill_exit --timeout 60 --browser-args="--headless --no-sandbox " test_xeus_cpp.html
302+
${{ env.BUILD_PREFIX }}/bin/emrun.py --browser="google-chrome" --kill_exit --timeout 60 --browser-args="--headless --no-sandbox " test_xeus_cpp.html
303303
fi
304304
node test_xeus_cpp.js
305305
timeout-minutes: 4

0 commit comments

Comments
 (0)