mirror of
https://github.com/X11Libre/xf86-video-geode.git
synced 2026-03-28 03:09:33 +00:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
ubuntu:
|
|
strategy:
|
|
matrix:
|
|
xserver-version: [ master, xlibre-xserver-25.1.0, xlibre-xserver-25.0.0.18 ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: X11Libre/action-build-driver/target/ubuntu@v0.3.7
|
|
with:
|
|
xserver-version: ${{ matrix.xserver-version }}
|
|
|
|
freebsd:
|
|
strategy:
|
|
matrix:
|
|
xserver-version: [ master, xlibre-xserver-25.1.0, xlibre-xserver-25.0.0.18 ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: X11Libre/action-build-driver/target/freebsd@v0.3.7
|
|
with:
|
|
xserver-version: ${{ matrix.xserver-version }}
|
|
|
|
# this driver is 32bit-only, thus won't compile on Dragonfly, which is 64bit-only
|
|
|
|
netbsd:
|
|
strategy:
|
|
matrix:
|
|
xserver-version: [ master, xlibre-xserver-25.1.0 ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: X11Libre/action-build-driver/target/netbsd@v0.3.7
|
|
with:
|
|
xserver-version: ${{ matrix.xserver-version }}
|
|
|
|
release-notes:
|
|
name: Release pushed tag
|
|
runs-on: ubuntu-latest
|
|
if: ${{ startsWith(github.ref, 'refs/tags/xlibre-') }}
|
|
needs: [ ubuntu, freebsd, netbsd ]
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: X11Libre/action-build-driver/release@v0.3.7
|