mirror of
https://git.tukaani.org/xz.git
synced 2025-02-17 14:08:12 +00:00
I've checked over each of these and they're straightforward applications of the relevant Github Actions. (cherry picked from commit 9a6761aa35ed84d30bd2fda2333a4fdf3f46ecdc)
32 lines
744 B
YAML
32 lines
744 B
YAML
# SPDX-License-Identifier: 0BSD
|
|
|
|
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@8ade135a41bc03ea155e62e844d188df1ea18608 #v4
|
|
- name: Test in FreeBSD
|
|
id: test
|
|
uses: vmactions/FreeBSD-vm@f8be330398166d1eb0601f01353839d4052367b2 #v1.0.7
|
|
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
|