Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,13 @@ jobs:
sudo apt update

- name: Install APT dependencies
run: xargs sudo apt-get install -y --no-install-recommends < Aptfile
run: grep -v emscripten Aptfile | xargs sudo apt-get install -y --no-install-recommends

- name: Setup Emscripten
uses: mymindstorm/setup-emsdk@v14
with:
version: 5.0.2
actions-cache-folder: emsdk-cache

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ jobs:
sudo apt update

- name: Install APT dependencies
run: xargs sudo apt-get install -y --no-install-recommends < Aptfile
run: grep -v emscripten Aptfile | xargs sudo apt-get install -y --no-install-recommends

- name: Setup Emscripten
uses: mymindstorm/setup-emsdk@v14
with:
version: 5.0.2
actions-cache-folder: emsdk-cache

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ If you encounter any issues when following along with this file please don't hes
- [**Prism Ruby Parser v1.9.0**](https://github.com/ruby/prism/releases/tag/v1.9.0): We use Prism for Parsing the Ruby Source Code in the HTML+ERB files.
- [**Ruby**](https://www.ruby-lang.org/en/): We need Ruby as a dependency for `bundler`.
- [**Bundler**](https://bundler.io): We are using `bundler` to build [`prism`](https://github.com/ruby/prism) from source so we can build `herb` against it.
- [**Emscripten**](https://emscripten.org): For the WebAssembly build of `libherb` so it can be used in the browser using the [`@herb-tools/browser`](https://github.com/marcoroth/herb/blob/main/javascript/packages/browser) package.
- [**Emscripten 5**](https://emscripten.org): For the WebAssembly build of `libherb` so it can be used in the browser using the [`@herb-tools/browser`](https://github.com/marcoroth/herb/blob/main/javascript/packages/browser) package.
- [**Doxygen**](https://www.doxygen.nl): For building the C-Reference documentation pages.


Expand Down
Loading