-
Notifications
You must be signed in to change notification settings - Fork 3.5k
154 lines (129 loc) · 5.02 KB
/
Copy pathcheck-samples.yml
File metadata and controls
154 lines (129 loc) · 5.02 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: Check samples
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
changes:
name: Detect changes
runs-on: Akka-Default
outputs:
release_prep_only: ${{ steps.filter.outputs.release_prep_only }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Detect release-prep-only changes
id: filter
uses: ./.github/actions/release-prep-only
check-samples:
name: Check Sample Projects
needs: changes
if: needs.changes.outputs.release_prep_only != 'true'
runs-on: Akka-Default
env:
SCALA3_VERSION: 3.3.7
steps:
- name: Run akka/github-actions-scripts
uses: akka/github-actions-scripts/setup_global_resolver@main
- name: Checkout
# https://github.com/actions/checkout/releases
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Cache Coursier cache
# https://github.com/coursier/cache-action/releases
uses: coursier/cache-action@v8.1.0
- name: Set up JDK 17
# https://github.com/coursier/setup-action/releases
uses: coursier/setup-action@v3.0.0
with:
jvm: temurin:1.17
- name: Gather version
# some cleanup of the sbt output to get the version sbt will use when publishing below
run: |-
sbt --no-colors "print akka-actor/version" | tail -n 1 | tr -d '\n' > ~/.version
echo [$(cat ~/.version)]
# useful for debugging: hexdump -c ~/.version
- name: Publish artifacts locally
run: |-
sbt "+publishLocal; publishM2"
- name: Test akka-quickstart-java
run: |-
cd samples/akka-quickstart-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-quickstart-scala
run: |-
cd samples/akka-quickstart-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-cluster-java
run: |-
cd samples/akka-sample-cluster-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-sample-cluster-scala
run: |-
cd samples/akka-sample-cluster-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-distributed-data-java
run: |-
cd samples/akka-sample-distributed-data-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
sbt test multi-jvm:test -Dakka.version=`cat ~/.version`
- name: Test akka-sample-distributed-data-scala
run: |-
cd samples/akka-sample-distributed-data-scala
sbt test multi-jvm:test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test; multi-jvm:test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-fsm-java
run: |-
cd samples/akka-sample-fsm-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-sample-fsm-scala
run: |-
cd samples/akka-sample-fsm-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-sharding-java
run: |-
cd samples/akka-sample-sharding-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-sample-sharding-scala
run: |-
cd samples/akka-sample-sharding-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-kafka-to-sharding-scala
run: |-
cd samples/akka-sample-kafka-to-sharding-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Email on failure
if: ${{ failure() }}
uses: dawidd6/action-send-mail@v12
with:
server_address: smtp.gmail.com
server_port: 465
secure: true
username: ${{secrets.MAIL_USERNAME}}
password: ${{secrets.MAIL_PASSWORD}}
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
to: ${{secrets.MAIL_SEND_TO}}
from: "Akka CI <no-reply@akka.io>"
body: |
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}