This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/develop by this push:
new 1686cff6 Fix codeql cpp missing result
1686cff6 is described below
commit 1686cff6e9e54c4b3b60b6e81475e8e11290553b
Author: Haonan <[email protected]>
AuthorDate: Sat Sep 21 00:07:24 2024 +0800
Fix codeql cpp missing result
---
.github/workflows/codeql.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 6f493e5c..4ae54995 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -27,7 +27,7 @@ jobs:
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for
possible analysis time improvements.
- runs-on: ${{ (matrix.language == 'c-cpp' && 'windows-latest') ||
'ubuntu-latest' }}
+ runs-on: ${{ (matrix.language == 'c-cpp' && 'macos-latest') ||
'ubuntu-latest' }}
timeout-minutes: ${{ 360 }}
permissions:
# required for all workflows
@@ -45,7 +45,7 @@ jobs:
matrix:
include:
- language: c-cpp
- build-mode: manual
+ build-mode: autobuild
- language: java-kotlin
build-mode: none # This mode only analyzes Java. Set this to
'autobuild' or 'manual' to analyze Kotlin too.
- language: python