This repository was archived by the owner on Apr 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Merge upstream #26
Merged
Merged
Merge upstream #26
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
b9668b9
[test] Check that memory is exported/imported with correct min limit …
gumb0 8b73d00
[spec] Adjust oversight in reversal of br_table validation (#1305)
rossberg 7b270ee
[interpreter] More robust make rule
rossberg f607ec9
[test] Fix alignment of i32.store instruction (#1312)
gumb0 e3c1081
[spec] Remove obsolete notes and fix inaccurate side conditions (#1311)
rossberg c4dd6e3
binary: table instructions can be 1 byte or prefix+u32 (#1320)
ngzhian c22bc32
[interpreter] Overdue version bump
rossberg e94c07a
[spec] Fix side condition about fresh ids (#1315)
rossberg 873197e
[spec] Fix various typos in rules (#1321)
rossberg 6663b9e
[spec] Remove obsolete note about multiple tables.
Ms2ger 361039b
[test] Revert accidental commenting-out of a test
jblebrun a36e851
[js-api] Fix links to the core specification.
Ms2ger d97afb2
Fix the Editor metadata format
jyasskin 6f5a5af
Fix the Editor metadata format
jyasskin c681917
Proper markup for ref.func instruction
harpocrates 8c5432f
[spec] Fix grammar typo (#1328)
theduke 484bb2b
Factor unreachability tests out of select and br_table (#1329)
titzer 6622327
[spec] Fix type typo (#1333)
rossberg f9770eb
[js-api] Fix link to HTML.
Ms2ger 5e694c9
[spec] Fix a bunch of minor editorial issues (#1338)
rossberg 2e629bc
Create Github Actions workflow for CI (#1344)
takikawa 725c245
[spec] Fix `table.grow` signature in appendix (#1349)
fitzgen 46cf27c
[CI] Adjust JS/Web API build to use latest bikeshed
takikawa ab5ad7f
[spec] Fix type of `if` instruction in index (#1350)
acf5d26
[spec] Fix typos (#1351)
ivan-pan ed0f019
[js-api] Update CreateBuiltinFunction call for ES changes. (#1337)
Ms2ger 22f7fa4
[interpreter] Minor grammar fix
rossberg d404d09
[interpreter] Unbreak
rossberg 4353b29
[spec] Fix variable name typos (#1358)
rossberg 994ee7c
Remove outdated table test
gahaas e6bee70
[test] Sync with wpt.
Ms2ger 6a2b3b2
Add missing import to test
gahaas f528da2
Add missing import to test [2]
gahaas ac1bb59
Add action to mirror main to master (#1364)
ngzhian 397399a
[test] Fix binary test (#1367)
rossberg 530d309
Improve parse error message and add null-byte in comments test (#1372)
ngzhian 5893af5
Add tests for using nan patterns outside of script (#1373)
ngzhian efb35b2
[spec] Fix algorithm (#1375)
rossberg 9b4d86f
[spec] Replace some odd whitespace
rossberg 7f2dc80
[spec] Fix outdated item from br_table validation prose (#1378)
rossberg 6d15d3e
Use main in github workflow (#1380)
ngzhian 5d850a2
Rename "master" to "main" in repository URLs that have switched to "m…
sunfishcode ee4a6c4
Add integer tests for using nan patterns outside of script (#1379)
ngzhian 09a9540
Update sphinx to 3.5.4 (#1382)
ngzhian 0fd42ae
Import main conf.py in bikeshed/conf.py (#1381)
ngzhian b506bda
Check that partially-oob stores do not store partial data (#1384)
ngzhian 941c6f3
Upgrade katex to v0.13.19 (#1383)
ngzhian 93054e7
Check all types of partially-oob stores (#1385)
ngzhian b6307dc
Upgrade to Sphinx 4.0.0 (#1387)
ngzhian 932fbf8
[spec] Remove outdated footnote (#1389)
devsnek 3ae76b1
Only include ref links to index in multi-page html (#1388)
ngzhian e87021b
Fix html_last_updated_fmt
ngzhian 25ffaea
[spec] Add reference types to overview (#1394)
rossberg eae4abc
[interpreter] Remove use of physical equality on characters (#1396)
hanshoglund f5a260a
Merge SIMD proposal (#1391)
ngzhian 6711650
Merge branch 'main' of https://github.com/WebAssembly/spec into main
rossberg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ref-interpreter: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup OCaml | ||
uses: ocaml/setup-ocaml@v2 | ||
with: | ||
ocaml-compiler: 4.12.x | ||
- run: opam install --yes ocamlbuild.0.14.0 | ||
- run: cd interpreter && opam exec make all | ||
|
||
build-js-api-spec: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: pip install bikeshed && bikeshed update | ||
- run: bikeshed spec "document/js-api/index.bs" "document/js-api/index.html" | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: js-api-rendered | ||
path: document/js-api/index.html | ||
|
||
build-web-api-spec: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: pip install bikeshed && bikeshed update | ||
- run: bikeshed spec "document/web-api/index.bs" "document/web-api/index.html" | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: web-api-rendered | ||
path: document/web-api/index.html | ||
|
||
build-core-spec: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: "recursive" | ||
- run: pip install bikeshed && bikeshed update | ||
- run: pip install six | ||
- run: sudo apt-get update -y && sudo apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended | ||
- run: pip install sphinx==4.0.0 | ||
- run: cd document/core && make all | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: core-api-rendered | ||
path: document/core/_build/html | ||
|
||
publish-spec: | ||
runs-on: ubuntu-latest | ||
needs: [build-core-spec, build-js-api-spec, build-web-api-spec] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: mkdir _output && cp document/index.html _output/index.html | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: js-api-rendered | ||
path: _output/js-api | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: web-api-rendered | ||
path: _output/web-api | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: core-api-rendered | ||
path: _output/core | ||
- name: Publish HTML to GitHub Pages | ||
if: github.ref == 'refs/heads/main' | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
publish_dir: ./_output | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
mirror_job: | ||
runs-on: ubuntu-latest | ||
name: Mirror main branch to master branch | ||
steps: | ||
- name: Mirror action step | ||
id: mirror | ||
uses: google/mirror-branch-action@v1.0 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
source: 'main' | ||
dest: 'master' |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.