Fedora 40 #7
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
# Copyright 2024, Giordano Salvador | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
name: Fedora 40 | ||
on: | ||
workflow_dispatch: | ||
branches: [ "main" ] | ||
paths: | ||
- .github/workflows/build-and-test.yaml | ||
inputs: | ||
build_mode: | ||
description: Build optimization level | ||
required: true | ||
default: debug | ||
type: choice | ||
options: | ||
- debug | ||
- release | ||
env: | ||
DISTRO: fedora | ||
OS_VER: 40 | ||
OS: fedora-40 | ||
jobs: | ||
run: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Build and test | ||
uses: ./.github/workflows/build-and-test.yaml | ||
with: | ||
build_mode: debug | ||
distro: ${{ env.DISTRO }} | ||
os_ver: ${{ env.OS_VER }} | ||
os: ${{ env.OS }} | ||