Benchmark cold packed opcode initialization #70
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CodeQL | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "23 4 * * 1" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| concurrency: | |
| group: codeql-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze Java and Kotlin | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 45 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: "17" | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: java-kotlin | |
| build-mode: manual | |
| queries: security-extended | |
| tools: nightly | |
| - name: Compile JVM Kotlin sources | |
| run: >- | |
| ./gradlew --stacktrace --no-build-cache --rerun-tasks | |
| :core:compileKotlinJvm | |
| :snapshot:compileKotlinJvm | |
| :wasi:compileKotlinJvm | |
| :bindgen-api:compileKotlinJvm | |
| :bindgen-runtime:compileKotlinJvm | |
| :bindgen-ksp:classes | |
| :gradle-plugin:classes | |
| :tck:compileKotlinJvm | |
| :annotations:compileKotlinJvm | |
| :samples-cli:compileKotlin | |
| :test-support-wat:compileKotlinJvm | |
| :benchmarks:compileKotlinJvm | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: /language:java-kotlin |