-
Notifications
You must be signed in to change notification settings - Fork 8
34 lines (32 loc) · 984 Bytes
/
manual.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
# This workflow invokes other workflows with the requested Dafny build.
# It is primarily meant for manual compatibility testing,
# such as trying out what the next pending nightly build will do ahead of time.
name: Manual CI
on:
workflow_dispatch:
inputs:
dafny:
description: "The Dafny version to use"
required: true
type: string
jobs:
manual-ci-verification:
uses: ./.github/workflows/test_models_dafny_verification.yml
with:
dafny: ${{ inputs.dafny }}
manual-ci-java:
uses: ./.github/workflows/test_models_java_tests.yml
with:
dafny: ${{ inputs.dafny }}
manual-ci-net:
uses: ./.github/workflows/test_models_net_tests.yml
with:
dafny: ${{ inputs.dafny }}
manual-ci-rust:
uses: ./.github/workflows/test_models_rust_tests.yml
with:
dafny: ${{ inputs.dafny }}
manual-ci-python:
uses: ./.github/workflows/test_models_python_tests.yml
with:
dafny: ${{ inputs.dafny }}