Skip to content

Commit 031ab5c

Browse files
committed
Fixing browser test workflow
1 parent 15f5ea1 commit 031ab5c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
run: sudo apt-get update && sudo apt install -y software-properties-common google-chrome-stable
192192

193193
- name: Ensure the demo uses local packages
194-
run: cd demo-web; ./switch-packages.sh local; npm ci cd ..;
194+
run: cd demo-web; ./switch-packages.sh local; npm ci; cd ..;
195195

196196
- name: Run tests
197197
run: make test-browser

.github/workflows/test-node-step.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
- name: Download artifact
3131
uses: actions/download-artifact@v4
3232
with:
33-
pattern: php${{ inputs.phpVersion }}-node-${{ inputs.libType }}-*
34-
path: ./
33+
name: php${{ inputs.phpVersion }}-node-${{ inputs.libType }}
3534
merge-multiple: true
35+
path: ./
3636

3737
- name: npm install
3838
run: |

packages/gd/static.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ endif
3030
GD_FLAGS=
3131
GD_LIBS=
3232

33-
gd-libs: ${GD_LIBS}
34-
3533
ifeq (${WITH_FREETYPE},shared)
3634
GD_FLAGS+= --with-freetype=/src/lib
3735
GD_LIBS+= packages/gd/libfreetype.so
@@ -71,6 +69,8 @@ DYNAMIC_LIBS+= packages/gd/libwebp.so
7169
endif
7270
endif
7371

72+
gd-libs: ${GD_LIBS}
73+
7474
DOCKER_RUN_IN_EXT_GD=${DOCKER_ENV} -w /src/third_party/php${PHP_VERSION}-gd/ emscripten-builder
7575

7676
FREETYPE_VERSION?=2.10.0

0 commit comments

Comments
 (0)