From 1312f91f9e934994b2ebe904136a3186507d7af4 Mon Sep 17 00:00:00 2001 From: Brandon Rhodes Date: Mon, 24 Jan 2022 11:37:18 -0500 Subject: [PATCH] Get Linux compilation working on GitHub Actions --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100755 index 0000000..78055c8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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