Skip to content

Commit

Permalink
Add CI to build C runtime
Browse files Browse the repository at this point in the history
Can expand into scheme at some point, this is a first step.
  • Loading branch information
justinethier committed Sep 25, 2024
1 parent cc89219 commit 9470fb3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9470fb3

Please sign in to comment.