Skip to content

Commit

Permalink
enable CI : skip iwyu for now
Browse files Browse the repository at this point in the history
  • Loading branch information
azimafroozeh committed Sep 10, 2024
1 parent f64ff4f commit 456a847
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,36 +39,36 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build_${{ matrix.build_type }} -j 10

build-iwyu:
needs:
- build
# if: github.actor == 'azimafroozeh'
strategy:
fail-fast: true
matrix:
platform: [ ubuntu-latest ]
build_type: [ Release ]
cxx: [ clang++ ]
runs-on: ${{ matrix.platform }}

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Make directory build
run: mkdir ${{github.workspace}}/build_iwyu_${{ matrix.build_type }}

- name: Configure CMake
run: cmake -S ${{github.workspace}} -DFLS_ENABLE_IWYU=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -B ${{github.workspace}}/build_iwyu_${{ matrix.build_type }}
env:
CXX: ${{ matrix.cxx }}

- name: Build
run: cmake --build ${{github.workspace}}/build_iwyu_${{ matrix.build_type }} -j 10
# build-iwyu:
# needs:
# - build
# # if: github.actor == 'azimafroozeh'
# strategy:
# fail-fast: true
# matrix:
# platform: [ ubuntu-latest ]
# build_type: [ Release ]
# cxx: [ clang++ ]
# runs-on: ${{ matrix.platform }}
#
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
#
# - name: Make directory build
# run: mkdir ${{github.workspace}}/build_iwyu_${{ matrix.build_type }}
#
# - name: Configure CMake
# run: cmake -S ${{github.workspace}} -DFLS_ENABLE_IWYU=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -B ${{github.workspace}}/build_iwyu_${{ matrix.build_type }}
# env:
# CXX: ${{ matrix.cxx }}
#
# - name: Build
# run: cmake --build ${{github.workspace}}/build_iwyu_${{ matrix.build_type }} -j 10

generate_dataset:
needs:
- build-iwyu
- build
strategy:
fail-fast: true
matrix:
Expand Down

0 comments on commit 456a847

Please sign in to comment.