Skip to content
Compare
Choose a tag to compare
@ilyar ilyar released this 04 Aug 08:36
· 4 commits to main since this release
d50e38f

TVM Action

Toolchain

Example usage

Docker

Fift

echo '4 10 * 2 + .s' | docker run --rm -i ghcr.io/ever-guild/tvm-action fift

Gosh

docker run --rm -v$(pwd):/src -w /src -u 1000 -it ghcr.io/ever-guild/tvm-action
git clone gosh://0:b00a7a5a24740e4a7d6487d31969732f1febcaea412df5cc307400818055ad58/gosh/gosh

GitHub Actions

Fift

name: CI

jobs:
  test:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3
      - uses: ever-guild/tvm-action@v1
        with:
          args: echo '4 10 * 2 + .s' | fift

Gosh

name: CI

jobs:
  test:
    runs-on: ubuntu-22.04
    steps:
      - uses: ever-guild/tvm-action@v1
        with:
          args: git clone gosh://0:b00a7a5a24740e4a7d6487d31969732f1febcaea412df5cc307400818055ad58/gosh/gosh
      # only for write operations
      - run: |
          mkdir p $HOME/.gosh
          echo $CONFIG | base64 -d > $HOME/.gosh/config.json
        env:
          CONFIG: ${{ secrets.GOSH_CONFIG_BASE64 }}