-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FreeBSD GHA builder initial experiment
- Loading branch information
1 parent
124c9f7
commit e8aadc4
Showing
2 changed files
with
32 additions
and
1 deletion.
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,31 @@ | ||
name: FreeBSD build | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
freebsdbuild: | ||
runs-on: ubuntu-22.04 | ||
name: Build on FreeBSD | ||
# env: | ||
# MYTOKEN : ${{ secrets.MYTOKEN }} | ||
# MYTOKEN2: "value2" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build in FreeBSD | ||
id: build | ||
uses: vmactions/freebsd-vm@v1 | ||
with: | ||
# envs: 'MYTOKEN MYTOKEN2' | ||
usesh: true | ||
prepare: | | ||
git submodule update --init --recursive | ||
run: | | ||
./build.bsd.sh | ||
- name: Store executable | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: n2os_smb_client.bsd | ||
path: bin/n2os_smb_client.bsd |
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