Skip to content

Commit

Permalink
Break into separate CI tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
justinethier committed Jan 30, 2024
1 parent 1460221 commit c158467
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
File renamed without changes.
27 changes: 27 additions & 0 deletions .github/workflows/c-runtime-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: C Runtime Unit Tests

#on: [create]
on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
arch: [64]

steps:
# Install dependencies
- name: Install libck
run: sudo apt-get install libck-dev
#- name: Install Cyclone
# run: |
# wget https://github.com/cyclone-scheme/binary-releases/raw/master/ubuntu-18.04-lts/cyclone-scheme_0.30.0_amd64.deb
# sudo apt install ./cyclone-scheme_0.30.0_amd64.deb
- uses: actions/checkout@v1

# Execute runtime library unit tests
- name: make test-lib
run: make libcyclone.a && make test-lib && ./test-lib

0 comments on commit c158467

Please sign in to comment.