Skip to content

Commit

Permalink
disable two other CI jobs during testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jparismorgan committed Jan 17, 2024
1 parent 1ae4bda commit 204c410
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 47 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: Check formatting
# name: Check formatting

on:
push:
branches:
- main
paths-ignore:
- '_quarto.yml'
- 'quarto-materials/*'
- '**/.md'
pull_request:
branches:
- main
paths-ignore:
- '_quarto.yml'
- 'quarto-materials/*'
- '**/.md'
# on:
# push:
# branches:
# - main
# paths-ignore:
# - '_quarto.yml'
# - 'quarto-materials/*'
# - '**/.md'
# pull_request:
# branches:
# - main
# paths-ignore:
# - '_quarto.yml'
# - 'quarto-materials/*'
# - '**/.md'

jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 'Check clang-format'
run: |
source $GITHUB_WORKSPACE/scripts/ci/check_clang_format.sh
shell: bash
# jobs:
# check-formatting:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: 'Check clang-format'
# run: |
# source $GITHUB_WORKSPACE/scripts/ci/check_clang_format.sh
# shell: bash
44 changes: 22 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
name: CI
# name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]
# on:
# push:
# branches: [main]
# pull_request:
# branches: [main]

jobs:
run-tests:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install OpenBLAS
run: sudo apt install libopenblas-dev
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -S ./src -B ./src/build -DCMAKE_BUILD_TYPE=Debug -DTILEDB_VS_ENABLE_BLAS=ON
- name: Build
run: cmake --build ./src/build -j3
- name: Run Tests
run: cmake --build ./src/build --target check-ci
# jobs:
# run-tests:
# strategy:
# matrix:
# os: [ubuntu-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - name: Install OpenBLAS
# run: sudo apt install libopenblas-dev
# - uses: actions/checkout@v3
# - name: Configure CMake
# run: cmake -S ./src -B ./src/build -DCMAKE_BUILD_TYPE=Debug -DTILEDB_VS_ENABLE_BLAS=ON
# - name: Build
# run: cmake --build ./src/build -j3
# - name: Run Tests
# run: cmake --build ./src/build --target check-ci

0 comments on commit 204c410

Please sign in to comment.