mirror of https://github.com/XEphem/XEphem.git
Get Linux compilation working on GitHub Actions
This commit is contained in:
parent
06729a304a
commit
1312f91f9e
|
|
@ -0,0 +1,20 @@
|
||||||
|
name: ci
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- macos-ci
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
compile-linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install Ubuntu packages
|
||||||
|
run: grep 'sudo apt install' INSTALL | sed 's/\$//' | sh
|
||||||
|
- name: Compile
|
||||||
|
run: make -C GUI/xephem
|
||||||
Loading…
Reference in New Issue