mirror of
https://github.com/BloopAI/setup-zig.git
synced 2026-08-24 12:28:35 +00:00
Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9566bb3e87 | ||
|
|
2cffe3f4a2 | ||
|
|
c2eddb6989 | ||
|
|
8cf2a1296e | ||
|
|
1ef867edef | ||
|
|
9f0698fd52 | ||
|
|
bf730ebe84 | ||
|
|
632586c725 | ||
|
|
66631fd873 | ||
|
|
0cee191d07 | ||
|
|
e2ed12d04c | ||
|
|
cfbd20032e | ||
|
|
55609d477b | ||
|
|
d1113581f1 | ||
|
|
8db8d637fe | ||
|
|
942865929d | ||
|
|
8a2fb59d7a | ||
|
|
c34989108a | ||
|
|
8a99a7c9ad | ||
|
|
bcf8978f8e | ||
|
|
8c8dfa672b | ||
|
|
733ad9e5c7 |
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
|
||||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -15,13 +15,17 @@ jobs:
|
||||
smoke-test:
|
||||
name: Build test
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
zig-version: [0.5.0, 0.7.0, master]
|
||||
zig-version: [0.7.0, 0.8.0, 0.9.0, master]
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
zig-version: 0.5.0
|
||||
runs-on: ${{matrix.os}}
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
- name: Install Zig
|
||||
uses: goto-bus-stop/setup-zig@default
|
||||
with:
|
||||
|
||||
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## 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))
|
||||
```yaml
|
||||
|
||||
@@ -31,15 +31,10 @@ Optionally set a Zig version:
|
||||
```yaml
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
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
|
||||
|
||||
@@ -8,7 +8,7 @@ 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'
|
||||
runs:
|
||||
using: 'node12'
|
||||
using: 'node16'
|
||||
main: 'dist/index.js'
|
||||
|
||||
14977
dist/index.js
vendored
14977
dist/index.js
vendored
File diff suppressed because it is too large
Load Diff
2
index.js
2
index.js
@@ -28,7 +28,7 @@ async function downloadZig (platform, version) {
|
||||
}
|
||||
|
||||
async function main () {
|
||||
const version = actions.getInput('version') || '0.5.0'
|
||||
const version = actions.getInput('version') || 'master'
|
||||
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')
|
||||
return
|
||||
|
||||
10
package.json
10
package.json
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"name": "setup-zig",
|
||||
"description": "Use the zig compiler in your Github Action",
|
||||
"version": "1.3.0",
|
||||
"version": "2.0.0",
|
||||
"author": "Renée Kooi <renee@kooi.me>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.2.2",
|
||||
"@actions/tool-cache": "^1.3.1",
|
||||
"@actions/tool-cache": "^2.0.1",
|
||||
"semver": "^7.1.3",
|
||||
"simple-get": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vercel/ncc": "^0.25.0",
|
||||
"standard": "^16.0.1"
|
||||
"esbuild": "^0.15.13",
|
||||
"standard": "^17.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/goto-bus-stop/setup-zig",
|
||||
"keywords": [
|
||||
@@ -30,7 +30,7 @@
|
||||
"url": "https://github.com/goto-bus-stop/setup-zig.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": "ncc build index.js -o dist",
|
||||
"prepare": "esbuild index.js --outdir=dist --bundle --platform=node",
|
||||
"test": "standard && node test"
|
||||
},
|
||||
"standard": {
|
||||
|
||||
Reference in New Issue
Block a user