Skip to content

πŸ‘©β€πŸ’» Wasmtime WebAssembly runtime installer for GitHub Actions

Notifications You must be signed in to change notification settings

jcbhmr/setup-wasmtime

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

33 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Setup Wasmtime

πŸ‘©β€πŸ’» Wasmtime WebAssembly runtime installer for GitHub Actions

- uses: jcbhmr/setup-wasmtime@v2
- run: cargo build --target wasm32-wasi
- run: wasmtime target/wasm32-wasi/debug/*.wasm

πŸŸͺ Installs Wasmtime globally
πŸ”’ Supports semver ranges
πŸ“ Caches the Wasmtime installation

Usage

GitHub Actions GitHub

πŸš€ Here's what you're after:

on: push
jobs:
  job:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: jcbhmr/setup-wasmtime@v2
      - run: cargo build --target wasm32-wasi
      - run: wasmtime target/wasm32-wasi/debug/*.wasm

Inputs

  • wasmtime-version: Which version of Wasmtime to install. This can be an exact version specifier such as 16.0.0 or a semver range like ~16.0.0 or 16.x. Use latest to always install the latest release. Defaults to latest.

  • wasmtime-token: The GitHub token to use when fetching the version list from bytecodealliance/wasmtime. You shouldn't have to touch this. The default is the github.token if you're on github.com or unauthenticated (rate limited) if you're not on github.com.

Outputs

  • wasmtime-version: The version of Wasmtime that was installed. This will be something like 16.0.0 or similar.

  • cache-hit: Whether or not Wasmtime was restored from the runner's cache or download anew.

Development

Node.js

How do I test my changes?
Open a Draft Pull Request and some magic GitHub Actions will run to test the action.