From 32fafebd33f00b96d1f105d52c36f4e920937a4e Mon Sep 17 00:00:00 2001 From: Tammo Jan Dijkema Date: Fri, 6 Sep 2024 12:45:57 +0200 Subject: [PATCH] Add github action --- .github/workflows/ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5868e9e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,30 @@ +name: Build and test PyBDSF + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - name: Apt install required packages + run: | + sudo apt-get install -y libcasacore-dev build-essential cmake wget + - name: Get measures data + run: | + mkdir ${HOME}/casacore-data && pushd ${HOME}/casacore-data + wget ftp://anonymous@ftp.astron.nl/outgoing/Measures/WSRT_Measures.ztar + tar xf WSRT_Measures.ztar + echo "measures.directory: ~/casacore-data" > ${HOME}/.casarc + popd + - name: Build and install + run: | + mkdir build + pushd build + cmake --build .. + popd + - name: Test PyBDSF + run: | + pushd build + make test + popd