diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ead5d9..5dacb62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,10 +2,10 @@ name: CI — eBoot on: push: - branches: [main, develop] + branches: [master, main, develop] tags: ["v*"] pull_request: - branches: [main] + branches: [master, main] env: BUILD_TYPE: Release @@ -35,7 +35,6 @@ jobs: -DCMAKE_BUILD_TYPE=$BUILD_TYPE \ -DCMAKE_C_COMPILER=gcc-12 \ -DCMAKE_CXX_COMPILER=g++-12 \ - -DENABLE_COVERAGE=ON \ -DEBLDR_BUILD_TESTS=ON - name: Build (host) diff --git a/CMakeLists.txt b/CMakeLists.txt index a998809..a6d5f5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,6 +84,7 @@ add_library(eboot_core STATIC core/image_verify.c core/slot_manager.c core/boot_policy.c + core/boot_log.c core/recovery.c core/fw_services.c core/fw_update.c