-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump to 1.1.2, compile with zig 0.11.0, add aqua.yaml, update workflo…
…ws and release artifact naming/layout
- Loading branch information
1 parent
122308f
commit 71e0b0c
Showing
8 changed files
with
127 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,22 @@ jobs: | |
- name: Setup Zig | ||
uses: goto-bus-stop/[email protected] | ||
with: | ||
version: 0.10.1 | ||
version: 0.11.0 | ||
|
||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build and Test | ||
run: ./build compile test release | ||
- name: zig build | ||
run: | | ||
zig env | ||
zig build | ||
- name: Cross Compile | ||
run: ./build cross-release | ||
- name: zig build test | ||
run: | | ||
zig env | ||
zig build test | ||
- name: zig build cross | ||
run: | | ||
zig env | ||
zig build cross |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,21 +12,24 @@ jobs: | |
- name: Setup Zig | ||
uses: goto-bus-stop/[email protected] | ||
with: | ||
version: 0.10.1 | ||
version: 0.11.0 | ||
|
||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build and Test | ||
run: ./build compile test release | ||
- name: zig build test | ||
run: | | ||
zig env | ||
zig build test | ||
- name: Cross Compile | ||
run: ./build cross-release cross-tar | ||
- name: zig build cross -Doptimize=ReleaseSmall | ||
run: | | ||
zig env | ||
zig build cross -Doptimize=ReleaseSmall | ||
- name: Upload the artifacts | ||
uses: skx/github-action-publish-binaries@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
args: 'target/*.tgz' | ||
|
||
args: 'zig-out/cross/*/findup-*.tgz' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
zig 0.10.1 | ||
zig 0.11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# `findup` | ||
|
||
```text | ||
findup 1.1.1 | ||
findup 1.1.2 | ||
USAGE: | ||
findup FILE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
# aqua - Declarative CLI Version Manager | ||
# https://aquaproj.github.io/ | ||
# checksum: | ||
# enabled: true | ||
# require_checksum: true | ||
# supported_envs: | ||
# - all | ||
registries: | ||
- type: standard | ||
ref: v4.65.0 # renovate: depName=aquaproj/aqua-registry | ||
packages: | ||
- name: ziglang/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,87 @@ | ||
const std = @import("std"); | ||
|
||
pub fn build(b: *std.build.Builder) void { | ||
|
||
// ----- install ------ | ||
pub fn build(b: *std.Build) !void { | ||
const target = b.standardTargetOptions(.{}); | ||
const mode = b.standardReleaseOptions(); | ||
const exe = b.addExecutable("findup", "src/main.zig"); | ||
exe.setTarget(target); | ||
exe.setBuildMode(mode); | ||
exe.install(); | ||
|
||
// ----- run ----- | ||
|
||
const run_cmd = exe.run(); | ||
run_cmd.step.dependOn(b.getInstallStep()); | ||
if (b.args) |args| { | ||
run_cmd.addArgs(args); | ||
const optimize = b.standardOptimizeOption(.{}); | ||
|
||
const name = "findup"; | ||
|
||
// Compile | ||
const compile_step = b.step("findup", "Install findup executable"); | ||
const cross_step = b.step("cross", "Generate cross-compiled executables"); | ||
|
||
const source = std.Build.FileSource.relative("src/main.zig"); | ||
const exe = b.addExecutable(.{ | ||
.name = name, | ||
.root_source_file = source, | ||
.optimize = optimize, | ||
.target = target, | ||
}); | ||
const install_exe = b.addInstallArtifact(exe, .{}); | ||
compile_step.dependOn(&install_exe.step); | ||
b.default_step.dependOn(compile_step); | ||
|
||
// Cross-compile | ||
inline for (TRIPLES) |TRIPLE| { | ||
const cross = b.addExecutable(.{ | ||
.name = name, | ||
.root_source_file = source, | ||
.optimize = optimize, | ||
.target = try std.zig.CrossTarget.parse(.{ .arch_os_abi = TRIPLE }), | ||
}); | ||
|
||
const cross_install = b.addInstallArtifact(cross, .{ | ||
.dest_dir = .{ .override = .{ .custom = "cross/" ++ TRIPLE } }, | ||
}); | ||
|
||
const cross_tar = b.addSystemCommand(&.{ "sh", "-c", "tar -czvf findup-" ++ TRIPLE ++ ".tgz findup" }); | ||
cross_tar.cwd = "./zig-out/cross/" ++ TRIPLE; | ||
|
||
cross_tar.step.dependOn(&cross_install.step); | ||
cross_step.dependOn(&cross_tar.step); | ||
} | ||
|
||
const run_step = b.step("run", "Run the app"); | ||
run_step.dependOn(&run_cmd.step); | ||
// Tests | ||
const testSource = std.Build.FileSource.relative("src/test.zig"); | ||
|
||
const test_exe = b.addTest(.{ | ||
.root_source_file = testSource, | ||
.optimize = optimize, | ||
.target = target, | ||
}); | ||
|
||
// ----- test ----- | ||
const test_run = b.addRunArtifact(test_exe); | ||
|
||
const test_cmd = b.addTest("src/test.zig"); | ||
test_cmd.step.dependOn(b.getInstallStep()); | ||
const test_step = b.step("test", "Run test against the built CLI"); | ||
test_step.dependOn(&test_cmd.step); | ||
const test_step = b.step("test", "Run unit tests"); | ||
test_step.dependOn(compile_step); | ||
test_step.dependOn(&test_run.step); | ||
|
||
b.default_step.dependOn(test_step); | ||
} | ||
|
||
const TRIPLES = .{ | ||
"aarch64-linux-gnu", | ||
"aarch64-linux-musleabi", | ||
"aarch64-macos-none", | ||
"arm-linux-musleabi", | ||
"arm-linux-musleabihf", | ||
"mips-linux-gnu", | ||
"mips-linux-musl", | ||
"mips64-linux-gnuabi64", | ||
"mips64-linux-musl", | ||
"mips64el-linux-gnuabi64", | ||
"mips64el-linux-musl", | ||
"mipsel-linux-gnu", | ||
"mipsel-linux-musl", | ||
"powerpc-linux-gnu", | ||
"powerpc-linux-musl", | ||
"powerpc64le-linux-gnu", | ||
"powerpc64le-linux-musl", | ||
"riscv64-linux-gnu", | ||
"riscv64-linux-musl", | ||
"x86_64-linux-gnu", | ||
"x86_64-linux-musl", | ||
"x86_64-macos-none", | ||
"x86-linux-gnu", | ||
"x86-linux-musl", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters