Skip to content

Commit

Permalink
Use debug type for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
netheril96 committed Apr 18, 2024
1 parent fcaac69 commit c538b7a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ccpp.yml
Expand Up @@ -3,7 +3,6 @@ name: C/C++ CI
on:
pull_request:
push:
tags-ignore: '**'

env:
PYTHONUTF8: 1
Expand All @@ -30,7 +29,7 @@ jobs:
token: ${{ github.token }}
github-binarycache: true
- name: build-test
run: python3 build.py --enable_unit_test --enable_integration_test --vcpkg_root=${{ github.workspace }}/vcpkg --build_root=./build --cmake_defines CMAKE_BUILD_TYPE=Debug
run: python3 build.py --enable_unit_test --enable_integration_test --vcpkg_root=${{ github.workspace }}/vcpkg --build_root=./build --build_type Debug
- name: upload
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -61,7 +60,7 @@ jobs:
cache-key: macos-12-x64
github-binarycache: true
- name: build
run: python3 build.py --enable_unit_test --vcpkg_root=${{ github.workspace }}/vcpkg --triplet=x64-osx --build_root=./build --cmake_defines CMAKE_BUILD_TYPE=Debug
run: python3 build.py --enable_unit_test --vcpkg_root=${{ github.workspace }}/vcpkg --triplet=x64-osx --build_root=./build --build_type Debug
- name: upload
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -92,7 +91,7 @@ jobs:
cache-key: macos-12-arm64
github-binarycache: true
- name: build
run: python3 build.py --vcpkg_root=${{ github.workspace }}/vcpkg --triplet=arm64-osx --build_root=./build --cmake_defines CMAKE_OSX_ARCHITECTURES=arm64 CMAKE_BUILD_TYPE=Debug
run: python3 build.py --vcpkg_root=${{ github.workspace }}/vcpkg --triplet=arm64-osx --build_root=./build --cmake_defines CMAKE_OSX_ARCHITECTURES=arm64 --build_type Debug
- name: upload
uses: actions/upload-artifact@v1
with:
Expand Down Expand Up @@ -121,7 +120,7 @@ jobs:
cache-key: windows-latest
github-binarycache: true
- name: build-test
run: python3 build.py --clang_cl --enable_unit_test --enable_integration_test --vcpkg_root=${{ github.workspace }}/vcpkg --triplet=x64-windows-static-md --build_root=./build --cmake_defines CMAKE_BUILD_TYPE=Debug
run: python3 build.py --clang_cl --enable_unit_test --enable_integration_test --vcpkg_root=${{ github.workspace }}/vcpkg --triplet=x64-windows-static-md --build_root=./build --build_type Debug
- name: upload
uses: actions/upload-artifact@v1
with:
Expand Down

0 comments on commit c538b7a

Please sign in to comment.