Skip to content

Commit c272a08

Browse files
Merge pull request #108 from swiftwasm/katei/update-toolchain-5.3
Update toolchain version swift-wasm-5.3.0-RELEASE
2 parents 26a83a6 + 407ef62 commit c272a08

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/perf.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ jobs:
1616
export SWIFTENV_ROOT="$HOME/.swiftenv"
1717
export PATH="$SWIFTENV_ROOT/bin:$PATH"
1818
eval "$(swiftenv init -)"
19-
swiftenv install $TOOLCHAIN_DOWNLOAD
19+
make bootstrap
2020
make perf-tester
2121
node ci/perf-tester
2222
env:
23-
TOOLCHAIN_DOWNLOAD: https://github.com/swiftwasm/swift/releases/download/swift-wasm-5.3-SNAPSHOT-2020-08-10-a/swift-wasm-5.3-SNAPSHOT-2020-08-10-a-linux.tar.gz
2423
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
wasm-5.3-SNAPSHOT-2020-10-20-a
1+
wasm-5.3.0-RELEASE

IntegrationTests/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
CONFIGURATION ?= debug
22

33
FORCE:
4-
TestSuites/.build/$(CONFIGURATION)/%: FORCE
4+
TestSuites/.build/$(CONFIGURATION)/%.wasm: FORCE
55
swift build --package-path TestSuites \
6-
--product $(notdir $@) \
6+
--product $(basename $(notdir $@)) \
77
--triple wasm32-unknown-wasi \
88
--configuration $(CONFIGURATION)
99

10-
dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%
10+
dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%.wasm
1111
mkdir -p dist
1212
cp $< $@
1313

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Just pass a toolchain archive URL for [the latest SwiftWasm 5.3
119119
snapshot](https://github.com/swiftwasm/swift/releases) appropriate for your platform:
120120

121121
```sh
122-
$ swiftenv install https://github.com/swiftwasm/swift/releases/download/swift-wasm-5.3-SNAPSHOT-2020-10-20-a/swift-wasm-5.3-SNAPSHOT-2020-10-20-a-macos_x86_64.pkg
122+
$ swiftenv install https://github.com/swiftwasm/swift/releases/download/swift-wasm-5.3.0-RELEASE/swift-wasm-5.3.0-RELEASE-macos_x86_64.pkg
123123
```
124124

125125
You can also use the `install-toolchain.sh` helper script that uses a hardcoded toolchain snapshot:

0 commit comments

Comments
 (0)