From 4e24bd7a598a3873a8139cfed25a670c132459c3 Mon Sep 17 00:00:00 2001 From: Rajitha Hathurusinghe Date: Tue, 2 Jul 2024 23:54:30 -0400 Subject: [PATCH] Create makefile.yml --- .github/workflows/makefile.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/makefile.yml diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml new file mode 100644 index 0000000..be590a4 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,27 @@ +name: Makefile CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: configure + run: cmake . ; python -m pip install cffi + + - name: build + run: make + + - name: build backend + run: python main_builder.py ; python extended_builder.py + + - name: Run distcheck + run: python test.py ; python e_test.py