mirror of
https://git.tukaani.org/xz.git
synced 2025-02-20 07:28:20 +00:00
There's no real value in doing it via commit for official GH actions. We can keep using pinned commits for unofficial actions. It's hassle for no gain. Maybe going forward we can limit this further by only being paranoid for the jobs with any access to tokens. (cherry picked from commit 35f8649f08341639a627fd06350e938124ca3622)
33 lines
735 B
YAML
33 lines
735 B
YAML
# SPDX-License-Identifier: 0BSD
|
|
|
|
name: NetBSD
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
NetBSD-test:
|
|
runs-on: ubuntu-latest
|
|
name: Test xz on NetBSD
|
|
steps:
|
|
- uses: actions/checkout@v4.1.6
|
|
- name: Test in NetBSD
|
|
id: test
|
|
uses: vmactions/NetBSD-vm@da9ed4d7cd0fb64f330e2342ac5c77ba529b6a11 #v1.0.7
|
|
with:
|
|
usesh: true
|
|
prepare: |
|
|
/usr/sbin/pkg_add -v autoconf automake gmake gettext-tools gtar-base libtool-base m4 po4a
|
|
run: |
|
|
set -e
|
|
export LC_ALL=C LANG=C
|
|
uname -a
|
|
./autogen.sh
|
|
./configure --enable-werror
|
|
make
|
|
make check VERBOSE=1
|