Skip to content

Commit b731199

Browse files
committedMar 6, 2020
Update toolchain
1 parent c13928b commit b731199

File tree

5 files changed

+13
-489
lines changed

5 files changed

+13
-489
lines changed
 

‎.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
wasm-5.2-DEVELOPMENT-SNAPSHOT-2020-03-03-a
1+
wasm-DEVELOPMENT-SNAPSHOT-2020-03-05-a

‎IntegrationTests/JavaScriptKitExec/.swift-version

-1
This file was deleted.

‎Makefile

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@ MAKEFILE_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
22
WASI_SDK_DIR ?= $(MAKEFILE_DIR)/.wasi-sdk
33
WASI_SYSROOT ?= $(WASI_SDK_DIR)/share/wasi-sysroot
44

5+
.PHONY: bootstrap
6+
bootstrap:
7+
cd Runtime && npm install
8+
9+
.PHONY: build
510
build: .wasi-sdk/dummy
611
./script/build-package.sh $(WASI_SYSROOT)
12+
cd Runtime && npm run build
13+
14+
.PHONY: test
15+
test: build
16+
cd IntegrationTests && make test
17+
718
.wasi-sdk/dummy:
819
./script/install-wasi-sdk.sh $(WASI_SDK_DIR)
920
touch .wasi-sdk/dummy
10-
test:
11-
cd IntegrationTests && make test

0 commit comments

Comments
 (0)