Skip to content

Commit

Permalink
disable CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pvelesko committed Aug 6, 2024
1 parent 39006e7 commit b668324
Showing 1 changed file with 76 additions and 76 deletions.
152 changes: 76 additions & 76 deletions .github/workflows/check-unit-tests-intel.yml
Original file line number Diff line number Diff line change
@@ -1,79 +1,79 @@
# Workflow syntax:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: unit-test-checker-intel
# # Workflow syntax:
# # https://help.github.com/en/articles/workflow-syntax-for-github-actions
# name: unit-test-checker-intel

on:
pull_request:
paths-ignore: "docs/**"
# on:
# pull_request:
# paths-ignore: "docs/**"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
# concurrency:
# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# cancel-in-progress: true

jobs:
unit-tests-llvm-16-debug:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh debug llvm-16
shell: bash
unit-tests-llvm-16-release:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh release llvm-16
shell: bash
unit-tests-llvm-17-debug:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh debug llvm-17
shell: bash
unit-tests-llvm-17-release:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh release llvm-17
shell: bash
unit-tests-llvm-18-debug:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh debug llvm-18
shell: bash
unit-tests-llvm-18-release:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh release llvm-18
shell: bash
# jobs:
# unit-tests-llvm-16-debug:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh debug llvm-16
# shell: bash
# unit-tests-llvm-16-release:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh release llvm-16
# shell: bash
# unit-tests-llvm-17-debug:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh debug llvm-17
# shell: bash
# unit-tests-llvm-17-release:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh release llvm-17
# shell: bash
# unit-tests-llvm-18-debug:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh debug llvm-18
# shell: bash
# unit-tests-llvm-18-release:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh release llvm-18
# shell: bash

0 comments on commit b668324

Please sign in to comment.