-
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.
Merge pull request #3 from michalszmidt/dev
Dev
- Loading branch information
Showing
11 changed files
with
197 additions
and
36 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Publish for DragonflyBSD amd64 | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
test: | ||
runs-on: macos-12 | ||
name: Build for DragonflyBSD | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build in DragonflyBSD VM | ||
id: test | ||
uses: vmactions/dragonflybsd-vm@v0 | ||
with: | ||
usesh: false | ||
mem: 8192 | ||
prepare: | | ||
pkg update | ||
pkg upgrade -y | ||
pkg install -y curl rust pkgconf openssl | ||
rehash | ||
run: | | ||
rehash | ||
ls -lah | ||
rustc --version | ||
cargo build --release | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: target/release/hctl | ||
asset_name: hctl-dragonflybsd-amd64 | ||
tag: ${{ github.ref }} |
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
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,33 @@ | ||
name: Publish for NetBSD amd64 | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
test: | ||
runs-on: macos-12 | ||
name: Build for NetBSD | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build in NetBSD VM | ||
id: test | ||
uses: vmactions/netbsd-vm@v0 | ||
with: | ||
usesh: false | ||
mem: 8192 | ||
prepare: | | ||
/usr/sbin/pkg_add curl rust pkgconf openssl | ||
run: | | ||
ls -lah | ||
rustc --version | ||
cargo build --release | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: target/release/hctl | ||
asset_name: hctl-netbsd-amd64 | ||
tag: ${{ github.ref }} |
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,34 @@ | ||
name: Publish for OpenBSD amd64 | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
test: | ||
runs-on: macos-12 | ||
name: Build for OpenBSD | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Compile in OpenBSD VM | ||
id: test | ||
uses: vmactions/openbsd-vm@v0 | ||
with: | ||
usesh: false | ||
mem: 8192 | ||
prepare: | | ||
pkg_add curl rust pkgconf openssl | ||
run: | | ||
ls -lah | ||
rustc --version | ||
cargo build --release | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: target/release/hctl | ||
asset_name: hctl-openbsd-amd64 | ||
tag: ${{ github.ref }} |
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
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
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