ci: Add Windows Clang builder #840
Workflow file for this run
This file contains 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: '🏗️ Build jellyfin-ffmpeg' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
on: | ||
push: | ||
branches: | ||
- jellyfin | ||
paths-ignore: | ||
- '**/*.md' | ||
pull_request: | ||
branches: | ||
- jellyfin | ||
paths-ignore: | ||
- '**/*.md' | ||
jobs: | ||
# build_debian: | ||
# uses: ./.github/workflows/_meta.yaml | ||
# with: | ||
# distro: 'debian' | ||
# codenames: '["bullseye", "bookworm"]' | ||
# architectures: '["amd64", "arm64", "armhf"]' | ||
# release: false | ||
# | ||
# build_ubuntu: | ||
# uses: ./.github/workflows/_meta.yaml | ||
# with: | ||
# distro: 'ubuntu' | ||
# codenames: '["focal", "jammy", "noble"]' | ||
# architectures: '["amd64", "arm64", "armhf"]' | ||
# release: false | ||
# | ||
# build_portable_windows: | ||
# uses: ./.github/workflows/_meta_portable.yaml | ||
# with: | ||
# os: 'windows' | ||
# architectures: '["win64"]' | ||
# release: false | ||
build_portable_windows: | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
cc: | ||
- name: gcc | ||
profile: _meta_portable | ||
- name: clang | ||
profile: _meta_win_clang_portable | ||
uses: ./.github/workflows/${{ matrix.cc.profile }}.yaml | ||
Check failure on line 53 in .github/workflows/build.yaml GitHub Actions / .github/workflows/build.yamlInvalid workflow file
|
||
with: | ||
os: 'windows' | ||
architectures: '["win64"]' | ||
release: false | ||
# | ||
# build_portable_linux: | ||
# uses: ./.github/workflows/_meta_portable.yaml | ||
# with: | ||
# os: 'linux' | ||
# architectures: '["amd64", "arm64"]' | ||
# release: false | ||
# | ||
# build_portable_mac: | ||
# uses: ./.github/workflows/_meta_mac_portable.yaml | ||
# with: | ||
# release: false |