-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (42 loc) · 1.21 KB
/
rw-entry-testing-baseset.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Testing (Baseset)
# A generic reusing workflow that tests a OpenTTD baseset project (OpenGFX, OpenSFX, or OpenMSX).
on:
workflow_call:
inputs:
apt-packages:
description: A list of apt packages to install.
required: false
type: string
name:
description: The name of the project.
required: true
type: string
pip-packages:
description: A list of pip packages to install.
required: false
type: string
problem-matcher:
description: A problem matcher to use.
default: ""
required: false
type: string
concurrency:
group: testing-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/master' }}
jobs:
build:
name: Build
uses: ./.github/workflows/rw-baseset-build.yml
with:
apt-packages: ${{ inputs.apt-packages }}
name: ${{ inputs.name }}
pip-packages: ${{ inputs.pip-packages }}
problem-matcher: ${{ inputs.problem-matcher }}
publish: false
release-date: ""
version: dev
annotation_check:
name: Annotation Check
needs:
- build
uses: ./.github/workflows/rw-annotation-check.yml