Skip to content

Commit 84ae533

Browse files
committed
DEBUG CI
1 parent eadb329 commit 84ae533

File tree

2 files changed

+0
-115
lines changed

2 files changed

+0
-115
lines changed

.github/workflows/pr_push.yml

Lines changed: 0 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -16,64 +16,5 @@ permissions:
1616
contents: read
1717

1818
jobs:
19-
CodeChecks:
20-
uses: ./.github/workflows/reusable_checks.yml
21-
DocsBuild:
22-
uses: ./.github/workflows/reusable_docs_build.yml
23-
FastBuild:
24-
name: Fast builds
25-
needs: [CodeChecks, DocsBuild]
26-
uses: ./.github/workflows/reusable_fast.yml
27-
Build:
28-
name: Basic builds
29-
needs: [FastBuild]
30-
uses: ./.github/workflows/reusable_basic.yml
31-
DevDax:
32-
needs: [FastBuild]
33-
uses: ./.github/workflows/reusable_dax.yml
34-
Sanitizers:
35-
needs: [FastBuild]
36-
uses: ./.github/workflows/reusable_sanitizers.yml
37-
Qemu:
38-
needs: [FastBuild]
39-
uses: ./.github/workflows/reusable_qemu.yml
40-
Benchmarks:
41-
needs: [Build]
42-
uses: ./.github/workflows/reusable_benchmarks.yml
43-
ProxyLib:
44-
needs: [Build]
45-
uses: ./.github/workflows/reusable_proxy_lib.yml
4619
GPU:
47-
needs: [Build]
4820
uses: ./.github/workflows/reusable_gpu.yml
49-
Valgrind:
50-
needs: [Build]
51-
uses: ./.github/workflows/reusable_valgrind.yml
52-
MultiNuma:
53-
needs: [Build]
54-
uses: ./.github/workflows/reusable_multi_numa.yml
55-
Coverage:
56-
# total coverage (on upstream only)
57-
if: github.repository == 'oneapi-src/unified-memory-framework'
58-
needs: [Build, DevDax, GPU, MultiNuma, Qemu, ProxyLib]
59-
uses: ./.github/workflows/reusable_coverage.yml
60-
secrets: inherit
61-
with:
62-
trigger: "${{github.event_name}}"
63-
Coverage_partial:
64-
# partial coverage (on forks)
65-
if: github.repository != 'oneapi-src/unified-memory-framework'
66-
needs: [Build, Qemu, ProxyLib]
67-
uses: ./.github/workflows/reusable_coverage.yml
68-
CodeQL:
69-
needs: [Build]
70-
permissions:
71-
contents: read
72-
security-events: write
73-
uses: ./.github/workflows/reusable_codeql.yml
74-
Trivy:
75-
needs: [Build]
76-
permissions:
77-
contents: read
78-
security-events: write
79-
uses: ./.github/workflows/reusable_trivy.yml

.github/workflows/reusable_gpu.yml

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -98,34 +98,6 @@ jobs:
9898
- name: Build UMF
9999
run: cmake --build ${{env.BUILD_DIR}} --config ${{matrix.build_type}} -j ${{matrix.number_of_processors}}
100100

101-
- name: Run tests
102-
working-directory: ${{env.BUILD_DIR}}
103-
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
104-
105-
- name: Run examples
106-
working-directory: ${{env.BUILD_DIR}}
107-
run: ctest --output-on-failure --test-dir examples -C ${{matrix.build_type}}
108-
109-
- name: Run benchmarks
110-
working-directory: ${{env.BUILD_DIR}}
111-
run: ctest --output-on-failure --test-dir benchmark -C ${{matrix.build_type}} --exclude-regex umf-bench-multithreaded
112-
113-
- name: Check coverage
114-
if: ${{ matrix.build_type == 'Debug' && matrix.os == 'Ubuntu' }}
115-
working-directory: ${{env.BUILD_DIR}}
116-
run: |
117-
export COVERAGE_FILE_NAME=${{env.COVERAGE_NAME}}-shared-${{matrix.shared_library}}
118-
echo "COVERAGE_FILE_NAME: $COVERAGE_FILE_NAME"
119-
../scripts/coverage/coverage_capture.sh $COVERAGE_FILE_NAME
120-
mkdir -p ${{env.COVERAGE_DIR}}
121-
mv ./$COVERAGE_FILE_NAME ${{env.COVERAGE_DIR}}
122-
123-
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
124-
if: ${{ matrix.build_type == 'Debug' && matrix.os == 'Ubuntu' }}
125-
with:
126-
name: ${{env.COVERAGE_NAME}}-shared-${{matrix.shared_library}}
127-
path: ${{env.COVERAGE_DIR}}
128-
129101
gpu-CUDA:
130102
name: CUDA
131103
env:
@@ -178,31 +150,3 @@ jobs:
178150
179151
- name: Build UMF
180152
run: cmake --build ${{env.BUILD_DIR}} --config ${{matrix.build_type}} -j ${{matrix.number_of_processors}}
181-
182-
- name: Run tests
183-
working-directory: ${{env.BUILD_DIR}}
184-
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
185-
186-
- name: Run examples
187-
working-directory: ${{env.BUILD_DIR}}
188-
run: ctest --output-on-failure --test-dir examples -C ${{matrix.build_type}}
189-
190-
- name: Run benchmarks
191-
working-directory: ${{env.BUILD_DIR}}
192-
run: ctest --output-on-failure --test-dir benchmark -C ${{matrix.build_type}} --exclude-regex umf-bench-multithreaded
193-
194-
- name: Check coverage
195-
if: ${{ matrix.build_type == 'Debug' && matrix.os == 'Ubuntu' }}
196-
working-directory: ${{env.BUILD_DIR}}
197-
run: |
198-
export COVERAGE_FILE_NAME=${{env.COVERAGE_NAME}}-shared-${{matrix.shared_library}}
199-
echo "COVERAGE_FILE_NAME: $COVERAGE_FILE_NAME"
200-
../scripts/coverage/coverage_capture.sh $COVERAGE_FILE_NAME
201-
mkdir -p ${{env.COVERAGE_DIR}}
202-
mv ./$COVERAGE_FILE_NAME ${{env.COVERAGE_DIR}}
203-
204-
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
205-
if: ${{ matrix.build_type == 'Debug' && matrix.os == 'Ubuntu' }}
206-
with:
207-
name: ${{env.COVERAGE_NAME}}-shared-${{matrix.shared_library}}
208-
path: ${{env.COVERAGE_DIR}}

0 commit comments

Comments
 (0)