mirror of
https://github.com/actions/runner.git
synced 2026-01-11 13:18:50 +08:00
Compare commits
3 Commits
releases/m
...
users/tihu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
edfad1a198 | ||
|
|
10bce3549c | ||
|
|
68b180a229 |
22
.github/workflows/codeql.yml
vendored
22
.github/workflows/codeql.yml
vendored
@@ -9,11 +9,11 @@ jobs:
|
||||
CodeQL-Build:
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
|
||||
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
@@ -22,13 +22,17 @@ jobs:
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
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
|
||||
run : |
|
||||
./dev.sh layout Release linux-x64
|
||||
- name: Manual build (Windows)
|
||||
if: runner.os == 'windows'
|
||||
run : |
|
||||
dev.cmd layout Release
|
||||
working-directory: src
|
||||
|
||||
- name: Manual build (Non-Windows)
|
||||
if: runner.os != 'windows'
|
||||
run : |
|
||||
./dev.sh layout Release
|
||||
working-directory: src
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
|
||||
Reference in New Issue
Block a user