-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (55 loc) · 1.59 KB
/
sam_package_code.yml
File metadata and controls
63 lines (55 loc) · 1.59 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
name: sam package code
on:
workflow_call:
jobs:
sam_package_code:
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
packages: read
steps:
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ env.BRANCH_NAME }}
# using git commit sha for version of action to ensure we have stable version
- name: Install asdf
uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302
with:
asdf_branch: v0.11.3
- name: Cache asdf
uses: actions/cache@v4
with:
path: |
~/.asdf
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}
restore-keys: |
${{ runner.os }}-asdf-
- name: Install asdf dependencies in .tool-versions
uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302
with:
asdf_branch: v0.11.3
env:
PYTHON_CONFIGURE_OPTS: --enable-shared
- name: make install
run: |
make install
- shell: bash
name: package code
run: |
cp .tool-versions ~/
rm -rf .aws-sam
make sam-build
cp Makefile .aws-sam/build/
cp samconfig_package_and_deploy.toml .aws-sam/build/
- uses: actions/upload-artifact@v4
name: upload build artifact
with:
name: packaged_code
path: |
.aws-sam/build