forked from delta-io/delta-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (60 loc) · 1.87 KB
/
lambda_checkpoint_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: lambda_checkpoint_build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: stable
override: true
- name: Format
run: cargo fmt -p lambda-delta-checkpoint -- --check
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: stable
override: true
- name: build and lint with clippy
run: cargo clippy -p lambda-delta-checkpoint
## Temporarily disable test - the lambda isn't super useful with the current checkpoint memory pressure anyway.
# test:
# strategy:
# fail-fast: false
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build musl
# uses: docker://messense/rust-musl-cross:x86_64-musl
# with:
# args: cargo build -p lambda-delta-checkpoint
# - name: Zip lambda bin
# run: |
# zip -j lambda-delta-checkpoint.zip ./target/x86_64-unknown-linux-musl/debug/bootstrap
# - name: Setup localstack
# run: |
# cp lambda-delta-checkpoint.zip ./aws/delta-checkpoint/
# docker network create delta-checkpoint
# (cd ./aws/delta-checkpoint && docker-compose up setup)
# - name: Run tests
# run: |
# docker run --rm \
# --network delta-checkpoint \
# --env "AWS_ENDPOINT_URL=http://localstack:4566" \
# -v "$(pwd)":/home/rust/src \
# messense/rust-musl-cross:x86_64-musl \
# cargo test -p lambda-delta-checkpoint