Skip to content

Commit

Permalink
gha test
Browse files Browse the repository at this point in the history
  • Loading branch information
JJL772 committed Jul 15, 2024
1 parent c140782 commit 360d451
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

on: ['pull_request', 'push']

jobs:
build:
name: Build
runs-on: ubuntu-22.04
strategy:
matrix:
USE_CXX11: ['YES', 'NO']
WITH_PYCPSW: ['BOOST', 'CYTHON']
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get install -y libboost-python-dev libtirpc-dev gcc g++ make cython3 python3.10-dev libyaml-cpp-dev
- name: Generate Local Config
run: |
echo "ARCHES=\$(HARCH)" > config.local.mak
echo "boostinc_DIR=/usr/include/" >> config.local.mak
echo "boostlib_DIR=/usr/lib/x86_64-linux-gnu" >> config.local.mak
echo "yaml_cppinc_DIR=/usr/include/" >> config.local.mak
echo "yaml_cpplib_DIR=/usr/lib/x86_64-linux-gnu" >> config.local.mak
echo "pyinc_DIR=/usr/include/python3.10" >> config.local.mak
echo "USE_TIRPC=YES" >> config.local.mak
echo "USE_CXX11_default=${{ matrix.USE_CXX11 }}" >> config.local.mak
echo "WITH_PYCPSW=${{ matrix.WITH_PYCPSW }}" >> config.local.mak
- name: Build and Install
run: make && make install
- name: Test
run: |
source env.slac.sh # Setup the enviroment.
udpsrv -S0 -L0 & # Start udpsrv in the background.
make test # Run the tests.
python3 -c "import pycpsw" # Test to import the python wrapper.

0 comments on commit 360d451

Please sign in to comment.