forked from WebAssembly/stack-switching
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
164 additions
and
60 deletions.
There are no files selected for viewing
This file contains 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,37 @@ | ||
name: Publish to W3C TR space | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: [ .github/**, document/** ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-to-w3c-TR: | ||
if: github.repository == 'WebAssembly/spec' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: "recursive" | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Setup Bikeshed | ||
run: pip install bikeshed && bikeshed update | ||
- name: Setup TexLive | ||
run: sudo apt-get update -y && sudo apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended | ||
- name: Setup Sphinx | ||
run: pip install six && pip install sphinx==5.1.0 | ||
- name: Publish all specs to their https://www.w3.org/TR/ URLs | ||
run: cd document && make -e WD-echidna-CI | ||
env: | ||
STATUS: --md-status=WD | ||
W3C_ECHIDNA_TOKEN_CORE: ${{ secrets.W3C_ECHIDNA_TOKEN_CORE }} | ||
W3C_ECHIDNA_TOKEN_JSAPI: ${{ secrets.W3C_ECHIDNA_TOKEN_JSAPI }} | ||
W3C_ECHIDNA_TOKEN_WEBAPI: ${{ secrets.W3C_ECHIDNA_TOKEN_WEBAPI }} | ||
YARN_ENABLE_IMMUTABLE_INSTALLS: false |
This file contains 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 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 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 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 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 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 |
---|---|---|
@@ -1,17 +1,16 @@ | ||
(lang dune 2.9) | ||
|
||
(name wasm) | ||
|
||
(generate_opam_files true) | ||
(using menhir 2.1) | ||
(implicit_transitive_deps false) | ||
|
||
(license Apache-2.0) | ||
(source (github WebAssembly/spec)) | ||
|
||
(authors "Andreas Rossberg <[email protected]") | ||
(maintainers "Andreas Rossberg <[email protected]") | ||
|
||
(generate_opam_files true) | ||
(using menhir 2.1) | ||
(implicit_transitive_deps false) | ||
|
||
(package | ||
(name wasm) | ||
(synopsis "Library to read and write WebAssembly (Wasm) files and manipulate their AST") | ||
|
This file contains 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