From 704730411c9eed5492383678d50029145c11379c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:12:03 +0000 Subject: [PATCH 1/3] Initial plan From 2045905e211411f7abcb9011afb071f73be5e0d8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:13:55 +0000 Subject: [PATCH 2/3] Add CI workflow to build necpp following INSTALL.md instructions Co-authored-by: tmolteno <85630+tmolteno@users.noreply.github.com> --- .github/workflows/build.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..371bab2 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,29 @@ +name: Build + +on: + push: + branches: [ master, main ] + pull_request: + branches: [ master, main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y g++ make automake autoconf libtool gfortran + + - name: Generate configure script + run: make -f Makefile.git + + - name: Configure + run: ./configure --without-lapack + + - name: Build + run: make -j 4 From dc9a2ec1045a549c838d0591a91ffe6b1088047a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:15:17 +0000 Subject: [PATCH 3/3] Add explicit permissions to CI workflow for security Co-authored-by: tmolteno <85630+tmolteno@users.noreply.github.com> --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 371bab2..2d9b820 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,8 @@ on: jobs: build: runs-on: ubuntu-latest + permissions: + contents: read steps: - name: Checkout code