Skip to content

Commit

Permalink
Add manual workflow triggers [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
theseion committed Dec 18, 2022
1 parent 0e1bdf1 commit 2d8a78c
Show file tree
Hide file tree
Showing 9 changed files with 70 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/pharo-10.0.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build Pharo 10.0
on:
push:
pull_request:
schedule:
# Minute [0,59]
# Hour [0,23]
# Day of the month [1,31]
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
inputs:
branches:
description: "Branches"
required: true
type: choice
options:
- master
- 2.2.0
- 3.0.0
- 3.0.1
- 3.0.2
- 3.0.3
- 3.0.4
- 4.0.0
- 4.1.0
- 4.1.1
- 5.0.0
- 5.0.1
- 5.0.2
- 5.0.3
- 5.0.4
- 5.0.5
- 5.0.6
- 5.1.0
- 5.2.0
jobs:
build:
name: Build Pharo 10.0
uses: theseion/fuel/.github/workflows/base.yaml@master
with:
build_targets: '["Pharo64-10"]'
configs: '[".default.ston", ".tests.ston", ".debug.ston", ".developmentgroup.ston"]'
1 change: 1 addition & 0 deletions .github/workflows/pharo-7.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Pharo 7.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pharo-8.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Pharo 8.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pharo-9.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Pharo 9.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pharo-alpha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Pharo alpha
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/squeak-5.2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Squeak 5.2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/squeak-5.3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Squeak 5.3
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/squeak-6.0.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Squeak 6.0
on:
push:
pull_request:
schedule:
# Minute [0,59]
# Hour [0,23]
# Day of the month [1,31]
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Squeak 6.0
uses: theseion/fuel/.github/workflows/base.yaml@master
with:
build_targets: '["Squeak64-6.0"]'
configs: '[".default.ston", ".tests.ston"]'
1 change: 1 addition & 0 deletions .github/workflows/squeak-alpha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
# Month of the year [1,12]
# Day of the week ([0,6] with 0=Sunday)
- cron: '17 4 * * 6'
workflow_dispatch:
jobs:
build:
name: Build Squeak alpha
Expand Down

0 comments on commit 2d8a78c

Please sign in to comment.