Differences From Artifact [4694c85176]:
- File
.github/workflows/netbsd-gcc.yml
— part of check-in
[31cd763da0]
at
2023-04-17 14:54:13
on branch trunk
— GitHub Actions: Significantly reduce *BSD tests
These are quite slow and quite unreliable, meaning it's impossible to
have CI succeed without having to manually restart several tests. (user: js, size: 569) [annotate] [blame] [check-ins using] [more...]
To Artifact [836cc2e216]:
- File .github/workflows/netbsd-gcc.yml — part of check-in [bdc755c141] at 2023-10-08 19:14:02 on branch trunk — GitHub Actions: Upgrade to actions/checkout@v4 (user: js, size: 569) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 |
name: netbsd-gcc
on: [push, pull_request]
jobs:
tests:
runs-on: macos-12
strategy:
matrix:
configure_flags:
-
- --disable-shared
- --with-tls=gnutls
steps:
| | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
name: netbsd-gcc
on: [push, pull_request]
jobs:
tests:
runs-on: macos-12
strategy:
matrix:
configure_flags:
-
- --disable-shared
- --with-tls=gnutls
steps:
- uses: actions/checkout@v4
- uses: vmactions/netbsd-vm@v0
with:
usesh: true
copyback: false
prepare: |
pkg_add autoconf automake gnutls pkgconf
run: |
./autogen.sh
./configure OBJC=gcc ${{ matrix.configure_flags }}
make -j4
make check
make install
|