Skip to content

Commit 7112e62

Browse files
committed
Updating with new installation logic
1 parent 04ccd1b commit 7112e62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: .github/workflows/linux.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- name: run cmake
1818
run: |
19-
mkdir build
20-
cd build
19+
mkdir _build
20+
cd _build
2121
cmake ..
2222
- name: build
2323
run: |
24-
cd build
24+
cd _build
2525
make
2626
2727
coek-build-and-test-with-tpls:
@@ -31,8 +31,8 @@ jobs:
3131
- uses: actions/checkout@v3
3232
- name: build tpls with Spack and then Coek
3333
run: |
34-
./build_dev.sh
34+
./build.sh
3535
- name: test
3636
run: |
37-
cd build
37+
cd _build
3838
make test

0 commit comments

Comments
 (0)