Skip to content

Commit b6adac8

Browse files
committed
Tweaking extension loading for static/shared libs
1 parent e71fd17 commit b6adac8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,19 @@ jobs:
3434
jq -c . dynamic-libs.json
3535
echo "libgroups=$(jq -c . dynamic-libs.json)" >> "$GITHUB_OUTPUT"
3636
37-
- name: Import configuration
38-
run: cp -p .github/.env_8.4.dynamic.ci .env
39-
4037
- name: Create builder image (if not cached)
4138
if: steps.cache-docker-image.outputs.cache-hit != 'true'
4239
run: |
4340
time make image
4441
docker save -o /tmp/builder-image.tar seanmorris/php-emscripten-builder:latest
4542
43+
- name: Cache Docker image
44+
id: cache-docker-image
45+
uses: actions/cache@v3
46+
with:
47+
path: /tmp/builder-image.tar
48+
key: ${{ runner.os }}-docker-${{ hashFiles('emscripten-builder.dockerfile') }}
49+
4650
build-libs:
4751
name: Build Shared Objects
4852
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)