Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

make all

make all #27

Workflow file for this run

# Run "make all" on selected Ubuntu and Python versions.
name:make all
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
on:
# Trigger workflow on push event.
#push:
# branches: [ ci ]
# Trigger workflow on pull request.
# pull_request:
# branches: [ ci ]
# Trigger workflow in GitHub web frontend or from API.
workflow_dispatch:
inputs:
os:
description:'Operating system'
required:true
default:'any'
type:choice
options:
-'any'
-'ubuntu-20.04'
-'ubuntu-22.04'
python-version:
description:'Python version'
required:true
default:'any'
type:choice
options:
-'any'
-'3.8'
-'3.9'
-'3.10'
-'3.11'
jobs:
# Run builds for all Ubuntu and Python versions.
build-any:
# https://docs.github.com/en/actions/learn-github-actions/expressions
if:${{ (github.event.inputs.os == 'any') && (github.event.inputs.python-version == 'any') || (github.event.inputs.os == '') }}
uses:./.github/workflows/makeall-linux.yaml
with:
os:"['ubuntu-20.04', 'ubuntu-22.04']"
python-version:"['3.8', '3.9', '3.10', '3.11']"
# Run builds for all Ubuntu versions and selected Python version.
build-any-os:
if:${{ (github.event.inputs.os == 'any') && (github.event.inputs.python-version != 'any') }}
uses:./.github/workflows/makeall-linux.yaml
with:
os:"['ubuntu-20.04', 'ubuntu-22.04']"
python-version:"['${{ github.event.inputs.python-version }}']"
# Run builds for selected Ubuntu version and all Python versions.
build-any-python:
if:${{ (github.event.inputs.os != 'any') && (github.event.inputs.python-version == 'any') }}
uses:./.github/workflows/makeall-linux.yaml
with:
os:"['${{ github.event.inputs.os }}']"
python-version:"['3.8', '3.9', '3.10', '3.11']"
# Run builds for selected Ubuntu and Python versions.
build:
if:${{ (github.event.inputs.os != 'any') && (github.event.inputs.python-version != 'any') && (github.event.inputs.os != '') }}
uses:./.github/workflows/makeall-linux.yaml
with:
os:"['${{ github.event.inputs.os }}']"
python-version:"['${{ github.event.inputs.python-version }}']"

[8]ページ先頭

©2009-2025 Movatter.jp