mirror of
https://github.com/BloopAI/setup-zig.git
synced 2026-08-25 12:38:34 +00:00
Compare commits
45 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7ab2955eb7 | ||
|
|
e299690d0d | ||
|
|
fff13db8fe | ||
|
|
426edce485 | ||
|
|
b4d8c3ab02 | ||
|
|
8dab702865 | ||
|
|
c7b6cdd3ad | ||
|
|
eec948797a | ||
|
|
6fede2f055 | ||
|
|
eaf2e37a2d | ||
|
|
d66159a2c0 | ||
|
|
eb533fc3df | ||
|
|
14a1906c0d | ||
|
|
bc506fbfd1 | ||
|
|
e24fd328aa | ||
|
|
d77db2eb23 | ||
|
|
ddee6faec6 | ||
|
|
dfa210dd0b | ||
|
|
a64a1dc5e1 | ||
|
|
64c2ecb313 | ||
|
|
869a4299cf | ||
|
|
75b5fc3918 | ||
|
|
7784e301e8 | ||
|
|
9566bb3e87 | ||
|
|
2cffe3f4a2 | ||
|
|
c2eddb6989 | ||
|
|
8cf2a1296e | ||
|
|
1ef867edef | ||
|
|
9f0698fd52 | ||
|
|
bf730ebe84 | ||
|
|
632586c725 | ||
|
|
66631fd873 | ||
|
|
0cee191d07 | ||
|
|
e2ed12d04c | ||
|
|
cfbd20032e | ||
|
|
55609d477b | ||
|
|
d1113581f1 | ||
|
|
8db8d637fe | ||
|
|
942865929d | ||
|
|
8a2fb59d7a | ||
|
|
c34989108a | ||
|
|
8a99a7c9ad | ||
|
|
bcf8978f8e | ||
|
|
8c8dfa672b | ||
|
|
733ad9e5c7 |
23
.editorconfig
Normal file
23
.editorconfig
Normal file
@@ -0,0 +1,23 @@
|
||||
# EditorConfig helps developers define and maintain consistent
|
||||
# coding styles between different editors and IDEs
|
||||
# editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
|
||||
[*.js]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
8
.github/dependabot.yml
vendored
Normal file
8
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: npm
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: "04:00"
|
||||
open-pull-requests-limit: 10
|
||||
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -9,12 +9,12 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- run: npm install
|
||||
- uses: EndBug/add-and-commit@v4
|
||||
with:
|
||||
add: dist
|
||||
message: Rebuild
|
||||
message: Rebuild (automated)
|
||||
author_name: Automated
|
||||
author_email: github@asdf.kooi.me
|
||||
env:
|
||||
|
||||
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
@@ -6,7 +6,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
- name: Run tests
|
||||
@@ -15,20 +15,26 @@ jobs:
|
||||
smoke-test:
|
||||
name: Build test
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
zig-version: [0.7.0, 0.8.0, 0.9.0, 0.10.0]
|
||||
zig-version: [0.7.0, 0.8.0, 0.9.0, 0.10.0, 0.11.0]
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
zig-version: 0.5.0
|
||||
runs-on: ${{matrix.os}}
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Zig
|
||||
uses: goto-bus-stop/setup-zig@default
|
||||
with:
|
||||
version: ${{matrix.zig-version}}
|
||||
- name: Run tests
|
||||
- name: Run tests (zig up to v0.10.x)
|
||||
if: ${{ !startsWith(matrix.zig-version, '0.11.') }}
|
||||
run: zig build test
|
||||
working-directory: test
|
||||
working-directory: test/v0.10
|
||||
- name: Run tests (zig v0.11.x)
|
||||
if: ${{ startsWith(matrix.zig-version, '0.11.') }}
|
||||
run: zig build test
|
||||
working-directory: test/v0.11
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,5 @@
|
||||
node_modules
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
|
||||
27
CHANGELOG.md
27
CHANGELOG.md
@@ -4,9 +4,32 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## 1.4.0
|
||||
## 2.2.0
|
||||
* Update the action to use Node.js 20. [#61](https://github.com/goto-bus-stop/setup-zig/pull/61)
|
||||
* Add a test for zig 0.11.0. [#62](https://github.com/goto-bus-stop/setup-zig/pull/62)
|
||||
|
||||
Thanks [@chenrui333](https://github.com/chenrui333)!
|
||||
|
||||
## 2.1.1
|
||||
* Fix `cache: false`, see [#55](https://github.com/goto-bus-stop/setup-zig/issues/55).
|
||||
|
||||
Thanks to [@linusg](https://github.com/linusg) for the report!
|
||||
|
||||
## 2.1.0
|
||||
* The action now caches compilers in your repository's Actions cache by default. This significantly
|
||||
speeds up installs on average. [#53](https://github.com/goto-bus-stop/setup-zig/pull/54)
|
||||
speeds up installs on average. [#53](https://github.com/goto-bus-stop/setup-zig/pull/53)
|
||||
|
||||
2.0.2 also had caching-related changes but they didn't actually do much, based on a misunderstanding
|
||||
of what the `tool-cache` is for.
|
||||
|
||||
## 2.0.2
|
||||
* Fix tool-cache usage, this should speed up the action if zig was already downloaded before. [#45](https://github.com/goto-bus-stop/setup-zig/pull/45)
|
||||
|
||||
## 2.0.1
|
||||
* Update docs to v2
|
||||
|
||||
## 2.0.0
|
||||
* Change `version` option default to `master`. See [#24](https://github.com/goto-bus-stop/setup-zig/issues/24)
|
||||
|
||||
## 1.3.0
|
||||
* Support pinning to a specific commit of the zig compiler. ([@codehz](https://github.com/codehz) in [#14](https://github.com/goto-bus-stop/setup-zig/pull/14))
|
||||
|
||||
19
README.md
19
README.md
@@ -17,33 +17,28 @@ jobs:
|
||||
runs-on: ${{matrix.os}}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
- 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@v1
|
||||
- uses: goto-bus-stop/setup-zig@v2
|
||||
- run: zig fmt --check src/*.zig
|
||||
```
|
||||
|
||||
Optionally set a Zig version:
|
||||
```yaml
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
- uses: goto-bus-stop/setup-zig@v2
|
||||
with:
|
||||
version: 0.7.0 # The default is 0.5.0
|
||||
version: 0.7.0
|
||||
```
|
||||
|
||||
To use the nightly builds, set:
|
||||
```yaml
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
with:
|
||||
version: master
|
||||
```
|
||||
The default is to use the nightly `master` builds.
|
||||
|
||||
Or [pin to a specific commit](https://github.com/goto-bus-stop/setup-zig/issues/13) using `version+commithash` syntax:
|
||||
```yaml
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
- uses: goto-bus-stop/setup-zig@v2
|
||||
with:
|
||||
version: 0.6.0+4b48fccad
|
||||
```
|
||||
@@ -60,7 +55,7 @@ each per version/OS/architecture.
|
||||
If this is really bad for you for some reason you can disable the caching.
|
||||
|
||||
```yaml
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
- uses: goto-bus-stop/setup-zig@v2
|
||||
with:
|
||||
cache: false
|
||||
```
|
||||
|
||||
@@ -8,11 +8,11 @@ inputs:
|
||||
version:
|
||||
description: 'Version of the zig compiler to use (must be 0.3.0 or up)'
|
||||
required: true
|
||||
default: '0.5.0'
|
||||
default: 'master'
|
||||
cache:
|
||||
description: 'Cache downloaded compilers for faster action runs. Strongly recommended.'
|
||||
required: false
|
||||
default: 'true'
|
||||
runs:
|
||||
using: 'node12'
|
||||
using: 'node20'
|
||||
main: 'dist/index.js'
|
||||
|
||||
21494
dist/index.js
vendored
21494
dist/index.js
vendored
File diff suppressed because one or more lines are too long
4
index.js
4
index.js
@@ -56,7 +56,7 @@ async function downloadZig (platform, version, useCache = true) {
|
||||
}
|
||||
|
||||
async function main () {
|
||||
const version = actions.getInput('version') || '0.5.0'
|
||||
const version = actions.getInput('version') || 'master'
|
||||
const useCache = actions.getInput('cache') || 'true'
|
||||
if (semver.valid(version) && semver.lt(version, '0.3.0')) {
|
||||
actions.setFailed('This action does not work with Zig 0.1.0 and Zig 0.2.0')
|
||||
@@ -67,7 +67,7 @@ async function main () {
|
||||
return
|
||||
}
|
||||
|
||||
const zigPath = await downloadZig(os.platform(), version, Boolean(useCache))
|
||||
const zigPath = await downloadZig(os.platform(), version, useCache === 'true')
|
||||
|
||||
// Add the `zig` binary to the $PATH
|
||||
actions.addPath(zigPath)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "setup-zig",
|
||||
"description": "Use the zig compiler in your Github Action",
|
||||
"version": "1.4.0",
|
||||
"version": "2.2.0",
|
||||
"author": "Renée Kooi <renee@kooi.me>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
|
||||
@@ -14,7 +14,7 @@
|
||||
"simple-get": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"esbuild": "^0.18.8",
|
||||
"esbuild": "^0.19.0",
|
||||
"standard": "^17.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/goto-bus-stop/setup-zig",
|
||||
@@ -31,7 +31,7 @@
|
||||
"url": "https://github.com/goto-bus-stop/setup-zig.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": "esbuild index.js --outdir=dist --keep-names --bundle --platform=node --target=node12",
|
||||
"prepare": "esbuild index.js --outdir=dist --keep-names --bundle --platform=node --target=node20",
|
||||
"test": "standard && node test"
|
||||
},
|
||||
"standard": {
|
||||
|
||||
13
test/v0.11/build.zig
Normal file
13
test/v0.11/build.zig
Normal file
@@ -0,0 +1,13 @@
|
||||
const Build = @import("std").Build;
|
||||
|
||||
pub fn build(b: *Build) void {
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
const test_build = b.addTest(.{
|
||||
.root_source_file = .{ .path = "src/main.zig" },
|
||||
.optimize = optimize,
|
||||
});
|
||||
const run_test = b.addRunArtifact(test_build);
|
||||
|
||||
const test_step = b.step("test", "Run the app");
|
||||
test_step.dependOn(&run_test.step);
|
||||
}
|
||||
5
test/v0.11/src/main.zig
Normal file
5
test/v0.11/src/main.zig
Normal file
@@ -0,0 +1,5 @@
|
||||
const debug = @import("std").debug;
|
||||
|
||||
test "it works" {
|
||||
debug.assert(1 == 1);
|
||||
}
|
||||
Reference in New Issue
Block a user