From 9470fb3e891eeb2808bde116cf41b26bf1ef0d3d Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 24 Sep 2024 18:33:04 -0700 Subject: [PATCH] Add CI to build C runtime Can expand into scheme at some point, this is a first step. --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..fbfc7f50 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: Ubuntu Linux Build + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + arch: [32, 64] + + steps: + - uses: actions/checkout@v1 + - name: Install ck + run: sudo apt-get install libck-dev + - name: make runtime + run: make libcyclone.a +# - name: make +# run: make +# - name: make install +# run: sudo make install +# - name: make test +# run: make test +