Skip to content

Commit 2592b29

Browse files
committed
small improvements
1 parent da365dd commit 2592b29

3 files changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/playwright.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,17 @@ jobs:
2828
- name: Install System Dependencies
2929
run: |
3030
sudo apt-get update
31-
sudo apt-get install -y unzip patchelf wget php-cli php-yaml gnuplot libxrender1 libxcursor1 libxft2 libxinerama1
32-
sudo apt-get install -y libgl1-mesa-glx || sudo apt-get install -y libgl1-mesa-dri || sudo apt-get install -y libgl1
31+
sudo apt-get install -y unzip patchelf wget php-cli php-yaml gnuplot
3332
3433
- name: Install SunCAE Dependencies (FeenoX & Gmsh)
3534
run: ./deps.sh
3635

3736
- name: Install Node Dependencies
3837
run: npm ci
3938

40-
# - name: Check what's on port 8000
41-
# run: ss -ltnp | grep ':8000' || true
42-
#
43-
# - name: Free port 8000 (if occupied)
44-
# run: npx kill-port 8000 || true
45-
4639
- name: Install Playwright Browsers
4740
run: npx playwright install --with-deps
4841

49-
# - name: Start PHP Server
50-
# run: php -S localhost:8000 -t html > php-server.log 2>&1 &
51-
5242
- name: Run Playwright tests
5343
run: npx playwright test
5444

meshers/gmsh/deps.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ if [ $use_system_binary = 0 ]; then
4242
wget -c http://gmsh.info/bin/Linux/${gmsh_tarball}.tgz
4343
fi
4444
tar xzf ${gmsh_tarball}.tgz
45+
rm -f ../bin/gmsh.py
4546
cp ${gmsh_tarball}/bin/gmsh ../bin
4647
cp ${gmsh_tarball}/lib/gmsh.py ../bin
4748
cp -d ${gmsh_tarball}/lib/libgmsh.so* ../bin

uxs/faster-than-quick/deps.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ if [ $use_system_binary = 0 ]; then
105105
if [ ! -d pandoc-${pandoc_version} ]; then
106106
tar xvzf ${pandoc_tarball}.tar.gz
107107
fi
108+
rm -f ../bin/pandoc
108109
cp pandoc-${pandoc_version}/bin/pandoc ../bin
109110
echo "done"
110111
cd ..

0 commit comments

Comments
 (0)