Skip to content

Draft: Add github action #14

Draft: Add github action

Draft: Add github action #14

Workflow file for this run

name: Build and test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Apt install required packages
run: |
sudo apt install -qq -y casacore-dev build-essential cmake wget libhdf5-dev
- name: Get measures data
run: |
mkdir ${HOME}/casacore-data && pushd ${HOME}/casacore-data
wget -q ftp://[email protected]/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 ..
cmake --build .
popd
- name: Test PyBDSF
run: |
pushd build
make test
popd