-
Notifications
You must be signed in to change notification settings - Fork 3.5k
91 lines (78 loc) · 3.04 KB
/
Copy pathnative-image-tests.yml
File metadata and controls
91 lines (78 loc) · 3.04 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
name: Native Image Tests
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
contents: read
jobs:
native-image-tests:
name: Run Native Image Tests
runs-on: Akka-Default
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 11
# https://github.com/coursier/setup-action/releases
uses: coursier/setup-action@v3.0.0
with:
jvm: temurin:1.11
- name: Gather version
# some cleanup of the sbt output to get the version sbt will use when publishing below
run: |-
sbt "akka-actor/version" --batch --no-colors | tail -n 1 | cut -f 2 -d ' ' | tr -d '\n' > ~/.version
echo [$(cat ~/.version)]
# useful for debugging: hexdump -c ~/.version
- name: Publish artifacts locally
run: |-
sbt publishLocal
- name: Local Scala Akka App native image build
run: |-
cd native-image-tests/local-scala
sbt nativeImage -Dakka.version=`cat ~/.version`
# run the binary
target/native-image/local-scala
# will return nonzero if failed
- name: Clustered Scala Akka App native image build
run: |-
cd native-image-tests/cluster-scala
sbt nativeImage -Dakka.version=`cat ~/.version`
# run the binary in run two nodes
target/native-image/cluster-scala &
export AKKA_CLUSTER_PORT=2552
target/native-image/cluster-scala
# both will complete or error out
# TLS remoting check
export AKKA_CLUSTER_PORT=2443
target/native-image/cluster-scala -Dconfig.resource=cluster-with-tls.conf &
export AKKA_CLUSTER_PORT=2444
target/native-image/cluster-scala -Dconfig.resource=cluster-with-tls.conf
# both will complete or error out
- 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}}