-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable two other CI jobs during testing
- Loading branch information
1 parent
1ae4bda
commit 204c410
Showing
2 changed files
with
47 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |