Skip to content

parameter_scan: fix overwriting of progerss variable #20

parameter_scan: fix overwriting of progerss variable

parameter_scan: fix overwriting of progerss variable #20

name: Compile Cell-ID C Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install build tools
run: sudo apt-get update && sudo apt-get install -y build-essential libtiff-dev
- name: Compile C code
working-directory: src
run: |
make -f Makevars cellid
make -f Makevars test
- name: Verify compilation
run: |
if [ ! -f ./cell ]; then
echo "Compilation failed: executable not found."
exit 1
fi
working-directory: src