Skip to content

Commit 9ae5916

Browse files
committed
try pipeline again
1 parent 977bf1e commit 9ae5916

File tree

1 file changed

+27
-31
lines changed

1 file changed

+27
-31
lines changed

.github/workflows/single-platform.yml

Lines changed: 27 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -63,38 +63,34 @@ jobs:
6363
6464
make
6565
66-
- name: List exes after build
67-
run: |
68-
echo "Current directory: $(pwd)"
69-
echo "Contents:"
70-
find . -type f -executable
71-
7266
- name: Upload Executables
7367
uses: actions/upload-artifact@v4
7468
with:
75-
name: executable-${{ matrix.compiler }}
69+
name: sparseBench-SCS-${{ matrix.compiler }}
7670
path: |
77-
$(pwd)/sparseBench-SCS-${{ matrix.compiler }}
78-
79-
# runTests:
80-
# runs-on: ubuntu-latest
81-
# needs: build
82-
# strategy:
83-
# matrix:
84-
# compiler: [GCC, ICC, CLANG]
85-
86-
# steps:
87-
# - uses: actions/checkout@v4
88-
89-
# - name: Download Executables
90-
# uses: actions/download-artifact@v4
91-
# with:
92-
# name: executable-${{ matrix.compiler }}
93-
# path: ./executables
94-
95-
# - name: Run Tests
96-
# run: |
97-
# chmod +x ./executables/*
98-
# ./executables/executable1 --test
99-
# ./executables/executable2 --test
100-
# ./executables/executable3 --test
71+
./sparseBench-SCS-${{ matrix.compiler }}
72+
73+
runTests:
74+
runs-on: ubuntu-latest
75+
needs: build
76+
strategy:
77+
matrix:
78+
compiler: [GCC, ICC, CLANG]
79+
80+
steps:
81+
- uses: actions/checkout@v4
82+
83+
- name: Download Executables
84+
uses: actions/download-artifact@v4
85+
with:
86+
name: sparseBench-SCS-${{ matrix.compiler }}
87+
path: ./executables
88+
89+
- name: Make Tests
90+
run: |
91+
cd tests
92+
make
93+
94+
- name: Run Tests
95+
run: |
96+
./runTests

0 commit comments

Comments
 (0)