-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (60 loc) · 1.76 KB
/
automation.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Latest version update
name: Automation
# UTC+0 / JST+9
#
# cron time
# 0 (minute)
# 5 (hour)
# * (day of the month)
# * (month)
# 1 (day of the week, where 0 is Sunday and 1 is Monday)
#
# "0 20 * * *" - Run every day at 5:00 am JST
# "0 20 * * *" - Run every week on Monday at 5:00 am JST
on:
workflow_dispatch:
schedule:
- cron: "0 20 * * 1"
jobs:
build-ubuntu-qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ubuntu-qa
run: docker build . --file ./ubuntu/Dockerfile.qa --tag ubuntu-qa:$(date +%s)
build-ubuntu-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ubuntu-lastest
run: docker build . --file ./ubuntu/Dockerfile.latest --tag ubuntu-latest:$(date +%s)
build-ubuntu-noble:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ubuntu-noble
run: docker build . --file ./ubuntu/Dockerfile.noble --tag ubuntu-noble:$(date +%s)
build-php-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: php-fpm
run: docker build . --file ./php/Dockerfile.latest --tag php:$(date +%s)
build-scala-bionic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: scala-bionic
run: docker build . --file ./scala/Dockerfile.bionic --tag scala-bionic:$(date +%s)
build-scala-mantic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: scala-mantic
run: docker build . --file ./scala/Dockerfile.mantic --tag scala-mantic:$(date +%s)
build-jenkins-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: jenkins-latest
run: docker build . --file ./jenkins/Dockerfile.latest --tag jenkins-latest:$(date +%s)