Skip to content

Commit

Permalink
juliac: add CI configuration for compiling and running runic
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Sep 4, 2024
1 parent b78cfc1 commit 8a6f182
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,26 @@ jobs:
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
if: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
juliac:
name: juliac - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
steps:
- uses: actions/checkout@v4
# - uses: julia-actions/setup-julia@v2
# with:
# version: 'nightly'
- uses: julia-actions/install-juliaup@v2
with:
channel: 'pr55047' # https://github.com/JuliaLang/julia/pull/55047
- uses: julia-actions/cache@v2
- name: Compile Runic with juliac
run: |
make -C juliac
- name: Smoke test compiled binary
run: |
./juliac/runicc --check --diff .

0 comments on commit 8a6f182

Please sign in to comment.