mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
Compare commits
3 Commits
v2.304.0
...
users/tihu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
edfad1a198 | ||
|
|
10bce3549c | ||
|
|
68b180a229 |
20
.github/workflows/codeql.yml
vendored
20
.github/workflows/codeql.yml
vendored
@@ -9,11 +9,11 @@ jobs:
|
|||||||
CodeQL-Build:
|
CodeQL-Build:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
|
|
||||||
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
|
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
@@ -22,13 +22,17 @@ jobs:
|
|||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v1
|
uses: github/codeql-action/init@v1
|
||||||
# Override language selection by uncommenting this and choosing your languages
|
|
||||||
# with:
|
|
||||||
# languages: go, javascript, csharp, python, cpp, java
|
|
||||||
|
|
||||||
- name: Manual build
|
- name: Manual build (Windows)
|
||||||
|
if: runner.os == 'windows'
|
||||||
run : |
|
run : |
|
||||||
./dev.sh layout Release linux-x64
|
dev.cmd layout Release
|
||||||
|
working-directory: src
|
||||||
|
|
||||||
|
- name: Manual build (Non-Windows)
|
||||||
|
if: runner.os != 'windows'
|
||||||
|
run : |
|
||||||
|
./dev.sh layout Release
|
||||||
working-directory: src
|
working-directory: src
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
|
|||||||
Reference in New Issue
Block a user