-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43f83df
commit 8580b91
Showing
1 changed file
with
29 additions
and
0 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,29 @@ | ||
name: FreeBSD | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
FreeBSD-test: | ||
runs-on: ubuntu-latest | ||
name: Test xz on FreeBSD | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Test in FreeBSD | ||
id: test | ||
uses: vmactions/[email protected] | ||
with: | ||
usesh: true | ||
prepare: | | ||
pkg install -y autoconf automake gmake gettext-tools gtar libtool m4 po4a | ||
run: | | ||
export LC_ALL=C LANG=C | ||
uname -a | ||
./autogen.sh | ||
./configure --enable-werror | ||
make | ||
make check VERBOSE=1 |