kopia lustrzana https://github.com/FreeSpacenav/spacenavd
merged automated GNU/Linux build with and without X11 support into one
rodzic
6bc733eaae
commit
2e4909cd51
|
@ -7,7 +7,6 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -25,11 +24,32 @@ jobs:
|
||||||
run: make
|
run: make
|
||||||
|
|
||||||
- name: stage install
|
- name: stage install
|
||||||
run: DESTDIR=spacenavd-instdir make install
|
run: DESTDIR=spacenavd-gnulinux make install
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: spacenavd-instdir
|
name: spacenavd-gnulinux
|
||||||
path: spacenavd-instdir
|
path: spacenavd-gnulinux
|
||||||
|
|
||||||
|
build-nox11:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: configure
|
||||||
|
run: ./configure --disable-x11
|
||||||
|
|
||||||
|
- name: build
|
||||||
|
run: make
|
||||||
|
|
||||||
|
- name: stage install
|
||||||
|
run: DESTDIR=spacenavd-gnulinux-nox11 make install
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: spacenavd-gnulinux-nox11
|
||||||
|
path: spacenavd-gnulinux-nox11
|
||||||
|
|
||||||
|
|
||||||
# vi:ts=2 sts=2 sw=2 expandtab:
|
# vi:ts=2 sts=2 sw=2 expandtab:
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
name: GNU/Linux no-X11 build
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
pull_request:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: configure
|
|
||||||
run: ./configure --disable-x11
|
|
||||||
|
|
||||||
- name: build
|
|
||||||
run: make
|
|
||||||
|
|
||||||
- name: stage install
|
|
||||||
run: DESTDIR=spacenavd-instdir make install
|
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: spacenavd-instdir
|
|
||||||
path: spacenavd-instdir
|
|
||||||
|
|
||||||
# vi:ts=2 sts=2 sw=2 expandtab:
|
|
Ładowanie…
Reference in New Issue