-
Notifications
You must be signed in to change notification settings - Fork 12
123 lines (105 loc) · 3.49 KB
/
dev.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: dev
on:
workflow_dispatch:
pull_request:
branches: [ master ]
push:
branches: [ master, 'branch-*' ]
paths-ignore:
- "scripts/**"
- "tools/**"
- "jenkins/**"
- "notes/**"
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: coursier/[email protected]
with:
jvm: temurin:1.17
apps: sbt sbtn
- uses: coursier/cache-action@v6
- name: Configure ntp time
run: |
sudo apt-get install ntp -y
sudo ntptime -T 37
- name: Tests
run: |
sbt -Dsbt.log.noformat=true -DenableFatalWarnings=true -Dakka.actor.serialize-messages=on -DenableCoverage=true -DgenerateStoryReport=true 'csw-time/test:test'
sbt -Dsbt.log.noformat=true -DenableFatalWarnings=true -Dakka.actor.serialize-messages=on -DenableCoverage=true -DgenerateStoryReport=true -DdisableTimeTests 'test:test'
- name: Coverage Report
run: |
sbt -Dsbt.log.noformat=true -DenableCoverage=true coverageReport
sbtn coverageAggregate
- name: Generate RTM
if: always()
run: |
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json rtm:0.3.0 -- target/RTM/testStoryMapping.txt tools/RTM/cswStoryToRequirementMap.csv target/RTM/testRequirementsMapping.txt
- name: Upload RTM
if: always()
uses: actions/upload-artifact@v4
with:
name: RTM
path: target/RTM
- uses: actions/upload-artifact@v4
with:
name: Coverage Report
path: target/scala-2.13/scoverage-report
multi-jvm-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: coursier/[email protected]
with:
jvm: temurin:1.17
apps: sbt sbtn
- uses: coursier/cache-action@v6
- name: Docs Check
run: |
sbtn clean
sbtn scalafmtCheck
sbtn scalastyle
sbtn makeSite
- name: Multi-Jvm Tests
run: sbt -Dsbt.log.noformat=true -DenableFatalWarnings=true -DgenerateStoryReport=true 'integration/multi-jvm:test'
- name: Generate RTM
if: always()
run: |
cs launch --channel https://raw.githubusercontent.com/tmtsoftware/osw-apps/master/apps.json rtm:0.3.0 -- target/RTM/testStoryMapping.txt tools/RTM/cswStoryToRequirementMap.csv target/RTM/testRequirementsMapping.txt
- name: Upload RTM
if: always()
uses: actions/upload-artifact@v4
with:
name: RTM-multi-jvm
path: target/RTM
slack-success:
needs: [ unit-tests, multi-jvm-tests ]
if: success()
runs-on: ubuntu-latest
steps:
- uses: kpritam/slack-job-status-action@v1
with:
job-status: Success
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
channel: ci-dev
slack-failure:
needs: [ unit-tests, multi-jvm-tests ]
if: failure()
runs-on: ubuntu-latest
steps:
- uses: kpritam/slack-job-status-action@v1
with:
job-status: Failure
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
channel: ci-dev
slack-cancelled:
needs: [ unit-tests, multi-jvm-tests ]
if: cancelled()
runs-on: ubuntu-latest
steps:
- uses: kpritam/slack-job-status-action@v1
with:
job-status: Cancelled
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
channel: ci-dev