GitHub/Gitea action to setup zig, utilizing cache. Supports regular and mach nominated versions
Go to file
Renée d77db2eb23
Fix tool-cache usage (#45)
* cache log

* log

* log

* use resolved ver for cache

* build

* log cache

* log

* use version as key

* deps

* loggggggg

* method name

* improve log

* ci: tweak versions

* include version for commit deps

* trailing

* mistake
2023-05-18 13:30:28 +01:00
.github Fix tool-cache usage (#45) 2023-05-18 13:30:28 +01:00
dist Fix tool-cache usage (#45) 2023-05-18 13:30:28 +01:00
test Actually support downloading Zig version: master (#5) 2020-02-01 19:01:44 +01:00
.gitattributes add gitattributes 2019-10-05 13:09:58 +02:00
.gitignore check in node_modules 2019-10-05 13:02:15 +02:00
.npmrc init 2019-10-05 12:44:47 +02:00
action.yml use master by default, fix #24 2022-11-07 13:19:37 +01:00
CHANGELOG.md 2.0.1 2022-11-07 13:46:57 +01:00
CODE_OF_CONDUCT.md init 2019-10-05 12:44:47 +02:00
index.js Fix tool-cache usage (#45) 2023-05-18 13:30:28 +01:00
LICENSE.md init 2019-10-05 12:44:47 +02:00
package.json Fix tool-cache usage (#45) 2023-05-18 13:30:28 +01:00
README.md update readme to v2 2022-11-07 13:38:56 +01:00
test.js Fix tool-cache usage (#45) 2023-05-18 13:30:28 +01:00
versions.js Fix tool-cache usage (#45) 2023-05-18 13:30:28 +01:00

setup-zig

Use the zig compiler in your Github Actions workflows

Usage - License: Apache-2.0

Usage

In a Github Actions workflow file, do something like:

jobs:
  test:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{matrix.os}}
    steps:
      - uses: actions/checkout@v2
      - uses: goto-bus-stop/setup-zig@v2
      - run: zig build test
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: goto-bus-stop/setup-zig@v2
      - run: zig fmt --check src/*.zig

Optionally set a Zig version:

- uses: goto-bus-stop/setup-zig@v2
  with:
    version: 0.7.0

The default is to use the nightly master builds.

Or pin to a specific commit using version+commithash syntax:

- uses: goto-bus-stop/setup-zig@v2
  with:
    version: 0.6.0+4b48fccad

If you are running Zig on Windows machines, you need to make sure that your .zig files use \n line endings and not \r\n. The actions/checkout action auto-converts line endings to \r\n on Windows runners, so add a .gitattributes file:

*.zig text eol=lf

License

Apache-2.0