Skip to content

Commit

Permalink
[NOMERGE] Disable unnecessary parts of workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
psalz committed Jul 18, 2023
1 parent 043ea75 commit 6eff0d9
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/cts_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build-common-base-image:
needs: check-secrets
if: needs.check-secrets.outputs.available == 'yes'
if: false
runs-on: ubuntu-20.04
steps:
- name: Checkout
Expand Down Expand Up @@ -116,12 +116,8 @@ jobs:
# NB: Don't forget to update versions in build-image-for-sycl-impl step as well
matrix:
include:
- sycl-impl: computecpp
version: 2.11.0
- sycl-impl: dpcpp
version: 83f877975c97acdb38d84f94dc146571cd522e0e
- sycl-impl: hipsycl
version: 3d8b1cd
env:
container-workspace: /__w/${{ github.event.repository.name }}/${{ github.event.repository.name }}
parallel-build-jobs: 2
Expand Down Expand Up @@ -161,18 +157,6 @@ jobs:
- name: Debug ccache
working-directory: ${{ env.container-workspace }}/build
run: find -iname "*.ccache-log" | xargs cat
- name: Build 'util'
working-directory: ${{ env.container-workspace }}/build
run: cmake --build . --target util
- name: Build all supported test categories
working-directory: ${{ env.container-workspace }}/build
run: |
TS_BEFORE=$(date +%s)
cmake --build . --target test_all --parallel ${{ env.parallel-build-jobs }}
TS_AFTER=$(date +%s)
ELAPSED=$(($TS_AFTER - $TS_BEFORE))
sort --numeric-sort --reverse --output=build_times.log build_times.log
echo "Total time: $( date --date=@$ELAPSED --utc '+%-Hh %-Mm %-Ss' )" >> build_times.log
- name: Upload build times artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 6eff0d9

Please sign in to comment.