Skip to content

Commit d9210e1

Browse files
committed
Merge branch 'master' of github.com:seanmorris/php-wasm
2 parents 83f3e10 + 306d231 commit d9210e1

File tree

546 files changed

+3758
-4596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

546 files changed

+3758
-4596
lines changed

.circleci/config.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ jobs:
6969
parallelism: 1
7070
machine:
7171
image: ubuntu-2204:2024.05.1
72-
resource_class: medium
72+
resource_class: xlarge
73+
environment:
74+
PS1: ">"
7375
steps:
7476
- checkout
7577
- run: npm install
@@ -84,7 +86,9 @@ jobs:
8486
parallelism: 1
8587
machine:
8688
image: ubuntu-2204:2024.05.1
87-
resource_class: medium
89+
resource_class: xlarge
90+
environment:
91+
PS1: ">"
8892
steps:
8993
- attach_workspace:
9094
at: ~/
@@ -99,8 +103,7 @@ jobs:
99103
- run: sudo apt install -y software-properties-common google-chrome-stable
100104
- run: cd demo-web; ./switch-packages.sh local; cd ..;
101105
- run: cp .circleci/.env_8.3-dynamic.ci .env
102-
- run: make image
103-
- run: make web-mjs worker-cgi-mjs web-dbg-mjs
106+
- run: make common-web
104107
- run: test/browser-test.sh
105108

106109
make-test-8-4-static:

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,6 @@ ${PHPIZE}: third_party/php${PHP_VERSION}-src/scripts/phpize-built
783783

784784
third_party/php${PHP_VERSION}-src/scripts/phpize-built: ENVIRONMENT=web
785785
third_party/php${PHP_VERSION}-src/scripts/phpize-built: ${DEPENDENCIES} | ${ORDER_ONLY}
786-
# ${DOCKER_RUN_IN_PHP} emmake make scripts/phpize ${BUILD_FLAGS} PHP_BINARIES=cli WASM_SHARED_LIBS="$(addprefix /src/,${SHARED_LIBS})"
787786
${DOCKER_RUN_IN_PHP} emmake make install-build ${BUILD_FLAGS} PHP_BINARIES=cli WASM_SHARED_LIBS="$(addprefix /src/,${SHARED_LIBS})"
788787
${DOCKER_RUN_IN_PHP} chmod +x scripts/phpize
789788
${DOCKER_RUN_IN_PHP} touch scripts/phpize-built

demo-node/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/node_modules
2+
/config/.cookies

demo-node/package-lock.json

Lines changed: 112 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo-node/package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,25 @@
22
"name": "php-cgi-wasm-node-demo",
33
"version": "0.0.0",
44
"description": "",
5-
"main": "index.js",
65
"scripts": {
76
"start": "./index.mjs"
87
},
98
"dependencies": {
10-
"php-cgi-wasm": "0.0.9-alpha-27",
11-
"php-wasm-dom": "0.0.9-alpha-27",
12-
"php-wasm-gd": "0.0.9-alpha-27",
13-
"php-wasm-iconv": "0.0.9-alpha-27",
14-
"php-wasm-intl": "0.0.9-alpha-27",
15-
"php-wasm-libxml": "0.0.9-alpha-27",
16-
"php-wasm-libzip": "0.0.9-alpha-27",
17-
"php-wasm-mbstring": "0.0.9-alpha-27",
18-
"php-wasm-openssl": "0.0.9-alpha-27",
19-
"php-wasm-phar": "0.0.9-alpha-27",
20-
"php-wasm-simplexml": "0.0.9-alpha-27",
21-
"php-wasm-sqlite": "0.0.9-alpha-27",
22-
"php-wasm-tidy": "0.0.9-alpha-27",
23-
"php-wasm-xml": "0.0.9-alpha-27",
24-
"php-wasm-yaml": "0.0.9-alpha-27",
25-
"php-wasm-zlib": "0.0.9-alpha-27"
9+
"php-cgi-wasm": "../packages/php-cgi-wasm",
10+
"php-wasm-dom": "../packages/dom",
11+
"php-wasm-gd": "../packages/gd",
12+
"php-wasm-iconv": "../packages/iconv",
13+
"php-wasm-intl": "../packages/intl",
14+
"php-wasm-libxml": "../packages/libxml",
15+
"php-wasm-libzip": "../packages/libzip",
16+
"php-wasm-mbstring": "../packages/mbstring",
17+
"php-wasm-openssl": "../packages/openssl",
18+
"php-wasm-phar": "../packages/phar",
19+
"php-wasm-simplexml": "../packages/simplexml",
20+
"php-wasm-sqlite": "../packages/sqlite",
21+
"php-wasm-tidy": "../packages/tidy",
22+
"php-wasm-xml": "../packages/xml",
23+
"php-wasm-yaml": "../packages/libyaml",
24+
"php-wasm-zlib": "../packages/zlib"
2625
}
2726
}

0 commit comments

Comments
 (0)