Skip to content

Commit 8dd34d1

Browse files
committed
update the action workflow to not build the compiler
1 parent 467ea66 commit 8dd34d1

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/nix-build.yml

+15-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,21 @@ jobs:
1111
- uses: DeterminateSystems/magic-nix-cache-action@main
1212
- uses: DeterminateSystems/flake-checker-action@main
1313

14+
15+
- name: Configure
16+
shell: nix develop --command {0}
17+
run: |
18+
mkdir -p build
19+
cd build && cmake ../ -DALASKA_ENABLE_COMPILER=OFF \
20+
-DALASKA_ENABLE_TESTING=ON \
21+
-DCMAKE_INSTALL_PREFIX:PATH=../local
22+
1423
- name: Compile
15-
run: nix develop --command make
24+
shell: nix develop --command {0}
25+
run: |
26+
make -C build
1627
1728
- name: Run Tests
18-
run: nix develop --command make test
29+
shell: nix develop --command {0}
30+
run: |
31+
build/runtime/alaska_test

0 commit comments

Comments
 (0)