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 | |
|---|---|---|---|
|
|
7d7611829d | ||
|
|
94c7f0924b | ||
|
|
1956e0fd25 | ||
|
|
3b3df5d7b4 | ||
|
|
5c615af1ba | ||
|
|
338494c8e7 | ||
|
|
0682612436 | ||
|
|
e0b50aeddc | ||
|
|
9e94a59e72 | ||
|
|
8a91458b3f | ||
|
|
964137ae91 | ||
|
|
7e9cfe8742 | ||
|
|
23860f7d57 | ||
|
|
09b0beda20 | ||
|
|
5f4f8a2949 | ||
|
|
70f70cd73c | ||
|
|
fd90c085ba | ||
|
|
d17d924695 | ||
|
|
996c042d7e | ||
|
|
59cbb946fb | ||
|
|
917722556b | ||
|
|
bd0d3f0ae3 |
21
.github/workflows/build.yml
vendored
Normal file
21
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Build
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'default'
|
||||
- 'v[0-9]+'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm install
|
||||
- uses: EndBug/add-and-commit@v4
|
||||
with:
|
||||
add: dist
|
||||
message: Rebuild
|
||||
author_name: Automated
|
||||
author_email: github@asdf.kooi.me
|
||||
env:
|
||||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
@@ -4,8 +4,8 @@ jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: goto-bus-stop/standard-action@v1.0.0
|
||||
- uses: actions/checkout@v2
|
||||
- uses: goto-bus-stop/standard-action@v1
|
||||
with:
|
||||
annotate: true
|
||||
env:
|
||||
@@ -15,11 +15,12 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
zig-version: [0.5.0, master]
|
||||
runs-on: ${{matrix.os}}
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/checkout@v2
|
||||
- uses: goto-bus-stop/setup-zig@default
|
||||
with:
|
||||
version: 0.5.0
|
||||
- run: zig run src/main.zig
|
||||
version: ${{matrix.zig-version}}
|
||||
- run: zig build test
|
||||
working-directory: test
|
||||
|
||||
17
CHANGELOG.md
17
CHANGELOG.md
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## 1.2.5
|
||||
* Update dependencies to fix #11.
|
||||
|
||||
## 1.2.4
|
||||
* Update dependencies simple-get and ncc.
|
||||
|
||||
## 1.2.3
|
||||
* Configure Actions to build releases automatically.
|
||||
|
||||
## 1.2.2
|
||||
* Update examples. (#7)
|
||||
* Upgrade dependencies.
|
||||
* Recommend using @v1 instead of pinning to a version.
|
||||
|
||||
## 1.2.1
|
||||
* Make `version: master` actually work.
|
||||
|
||||
## 1.2.0
|
||||
* Allow setting `version: master` to get the latest build from the development branch.
|
||||
|
||||
|
||||
12
README.md
12
README.md
@@ -16,27 +16,27 @@ jobs:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
runs-on: ${{matrix.os}}
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: goto-bus-stop/setup-zig@v1.0.0
|
||||
- uses: actions/checkout@v2
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
- run: zig build test
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: goto-bus-stop/setup-zig@v1.0.0
|
||||
- uses: actions/checkout@v2
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
- run: zig fmt --check src/*.zig
|
||||
```
|
||||
|
||||
Optionally set a Zig version:
|
||||
```yaml
|
||||
- uses: goto-bus-stop/setup-zig@v1.0.0
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
with:
|
||||
version: 0.4.0 # The default is 0.5.0
|
||||
```
|
||||
|
||||
To use the nightly builds, set:
|
||||
```yaml
|
||||
- uses: goto-bus-stop/setup-zig@v1.0.0
|
||||
- uses: goto-bus-stop/setup-zig@v1
|
||||
with:
|
||||
version: master
|
||||
```
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
name: 'Setup Zig'
|
||||
description: 'Setup a Zig compiler and add it to the path'
|
||||
icon: play
|
||||
color: orange
|
||||
branding:
|
||||
icon: play
|
||||
color: orange
|
||||
author: 'goto-bus-stop'
|
||||
inputs:
|
||||
version:
|
||||
|
||||
7689
dist/index.js
vendored
7689
dist/index.js
vendored
File diff suppressed because it is too large
Load Diff
18
index.js
18
index.js
@@ -41,19 +41,17 @@ async function downloadZig (version) {
|
||||
throw new Error(`Could not find version ${version} for platform ${host}`)
|
||||
}
|
||||
|
||||
const hostVariantName = {
|
||||
linux: 'linux-x86_64',
|
||||
darwin: 'macos-x86_64',
|
||||
win32: 'windows-x86_64'
|
||||
}[os.platform()]
|
||||
const variantName = `zig-${hostVariantName}-${version}`
|
||||
const variantName = path.basename(meta[host].tarball).replace(`.${ext}`, '')
|
||||
|
||||
const downloadPath = await cache.downloadTool(meta[host].tarball)
|
||||
const zigPath = ext === 'zip'
|
||||
? await cache.extractZip(downloadPath)
|
||||
: await cache.extractTar(downloadPath, undefined, 'x')
|
||||
|
||||
const binPath = path.join(zigPath, variantName)
|
||||
return cache.cacheDir(binPath, 'zig', version)
|
||||
const cachePath = await cache.cacheDir(binPath, 'zig', variantName)
|
||||
|
||||
return cachePath
|
||||
}
|
||||
|
||||
async function main () {
|
||||
@@ -72,4 +70,8 @@ async function main () {
|
||||
actions.addPath(zigPath)
|
||||
}
|
||||
|
||||
main()
|
||||
main().catch((err) => {
|
||||
console.error(err.stack)
|
||||
actions.setFailed(err.message)
|
||||
process.exit(1)
|
||||
})
|
||||
|
||||
12
package.json
12
package.json
@@ -1,19 +1,19 @@
|
||||
{
|
||||
"name": "setup-zig",
|
||||
"description": "Use the zig compiler in your Github Action",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.5",
|
||||
"author": "Renée Kooi <renee@kooi.me>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.1.3",
|
||||
"@actions/tool-cache": "^1.1.2",
|
||||
"semver": "^6.3.0",
|
||||
"simple-get": "^3.1.0"
|
||||
"@actions/core": "^1.2.2",
|
||||
"@actions/tool-cache": "^1.3.1",
|
||||
"semver": "^7.1.3",
|
||||
"simple-get": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@zeit/ncc": "^0.20.5",
|
||||
"@vercel/ncc": "^0.24.1",
|
||||
"standard": "^14.3.1"
|
||||
},
|
||||
"homepage": "https://github.com/goto-bus-stop/setup-zig",
|
||||
|
||||
@@ -2,13 +2,9 @@ const Builder = @import("std").build.Builder;
|
||||
|
||||
pub fn build(b: *Builder) void {
|
||||
const mode = b.standardReleaseOptions();
|
||||
const exe = b.addExecutable("test", "src/main.zig");
|
||||
exe.setBuildMode(mode);
|
||||
exe.install();
|
||||
const test_build = b.addTest("src/main.zig");
|
||||
test_build.setBuildMode(mode);
|
||||
|
||||
const run_cmd = exe.run();
|
||||
run_cmd.step.dependOn(b.getInstallStep());
|
||||
|
||||
const run_step = b.step("run", "Run the app");
|
||||
run_step.dependOn(&run_cmd.step);
|
||||
const test_step = b.step("test", "Run the app");
|
||||
test_step.dependOn(&test_build.step);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
const io = @import("std").io;
|
||||
const debug = @import("std").debug;
|
||||
|
||||
pub fn main() anyerror!void {
|
||||
const stdout = try io.getStdOut();
|
||||
try stdout.write("it works!\n");
|
||||
test "it works" {
|
||||
debug.assert(1 == 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user