mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
This should be faster than the Intel runners. Seems to be at least twice as fast for uncached builds compared to `ubuntu-22.04`. - [x] ~~Move elixir checks to `macos-14`~~ can't; Depends on `docker` and `erlef/setup-beam` - [x] Add macOS targets to rust checks - [x] Move swift build to macos-14 - [x] Move kotlin build to macos-14 - [x] Name all jobs that are required for merge group to not depend on job config - [x] Update PR branch protection rules
42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
name: "CodeQL"
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
analyze:
|
|
name: analyze-${{ matrix.working-directory }}
|
|
runs-on: ${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-22.04' }}
|
|
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- language: "javascript-typescript"
|
|
working-directory: "website/"
|
|
- language: "javascript-typescript"
|
|
working-directory: "elixir/apps/web/assets/"
|
|
# TODO
|
|
# - language: 'java-kotlin'
|
|
# working-directory: 'kotlin/android'
|
|
# - language: 'swift'
|
|
# working-directory: 'swift/apple'
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v3
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@v3
|
|
with:
|
|
working-directory: ${{ matrix.working-directory }}
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v3
|
|
with:
|
|
category: "/language:${{matrix.language}}"
|