diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 634c6d120..691be81ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,13 +55,13 @@ jobs: compiler-ref: ${{ needs.fetch-lf.outputs.ref }} if: ${{ !github.event.pull_request.draft ||contains( github.event.pull_request.labels.*.name, 'zephyr') }} -# lf-default-flexpret: -# needs: [fetch-lf] -# uses: lf-lang/lingua-franca/.github/workflows/c-flexpret-tests.yml@master -# with: -# runtime-ref: ${{ github.ref }} -# compiler-ref: ${{ needs.fetch-lf.outputs.ref }} -# if: ${{ !github.event.pull_request.draft ||contains( github.event.pull_request.labels.*.name, 'flexpret') }} + lf-default-flexpret: + needs: [fetch-lf] + uses: lf-lang/lingua-franca/.github/workflows/c-flexpret-tests.yml@master + with: + runtime-ref: ${{ github.ref }} + compiler-ref: ${{ needs.fetch-lf.outputs.ref }} + if: ${{ !github.event.pull_request.draft ||contains( github.event.pull_request.labels.*.name, 'flexpret') }} lf-default: needs: [fetch-lf] diff --git a/README.md b/README.md index 8c714a165..8762f8c98 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,11 @@ # Reactor-C: A reactor runtime implementation in C ## Documentation + To generate and view documentation, see [docs/README.md](docs/README.md). ## Code-formatting + We use clang-format to format our codebase. To run the formatter on all source and header files in reactor-c: ``` make format @@ -20,6 +22,7 @@ VSCode can be configured to run clang-format on files as they are saved. To achi ## Testing + The Github Actions tests for this repo will automatically run all the C Lingua Franca tests with each of the available schedulers. The version of the lingua-franca repo that is used to do this is specified by the lingua-franca-ref.txt file in this directory. To create a new unit test, write a C program with a file name ending in "test.c"