-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (50 loc) · 1.69 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
name: Build
on:
push:
pull_request:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
container: amazonlinux:2
steps:
- name: Install the necessary tools
run: |
yum update -y
yum groupinstall "Development Tools" -y
yum install -y tar wget lzip
- name: Build MuPDF
# https://mupdf.readthedocs.io/en/latest/quick-start-guide.html
run: |
wget https://mupdf.com/downloads/archive/mupdf-1.24.10-source.tar.gz
tar -xzf mupdf-1.24.10-source.tar.gz
cd mupdf-1.24.10-source
make HAVE_X11=no HAVE_GLUT=no prefix=/usr/local install
- name: Create the layer
run: |
mkdir -p layer/bin
cp /usr/local/bin/* layer/bin/
cd layer
zip -r9 ../mutool-layer.zip .
cd ..
- name: Upload the layer to the github artifact
uses: actions/upload-artifact@v4
with:
name: mutool-layer
path: mutool-layer.zip
- name: Login to AWS
run: |
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set region ${{ secrets.AWS_REGION }}
- name: Deploy the layer to the artifact registry
run: |
aws lambda publish-layer-version \
--layer-name mutool-layer \
--zip-file fileb://mutool-layer.zip \
--compatible-runtimes nodejs20.x
--region ${{ secrets.AWS_REGION }}