-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (53 loc) · 1.53 KB
/
build.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
name: Build
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
# allow queued workflows to interrupt previous runs
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: corretto
cache: sbt
java-version: 11
- uses: guardian/[email protected]
with:
private-ssh-keys: ${{ secrets.PRIVATE_INFRASTRUCTURE_CONFIG_DEPLOY_KEY }}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- uses: aws-actions/configure-aws-credentials@v2
with:
aws-region: eu-west-1
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}
- name: Clean, compile and test
run: sbt clean compile test assembly
- name: CDK synth
run: |
npm install -g yarn
cd cdk/
yarn install
yarn synth
- name: Upload to riff-raff
uses: guardian/actions-riff-raff@v2
with:
projectName: mobile::mobile-fastly-cache-purger
configPath: cdk/cdk.out/riff-raff.yaml
contentDirectories: |
mobile-fastly-cache-purger:
- target/scala-2.13/mobile-fastly-cache-purger.jar
cdk.out:
- cdk/cdk.out