Skip to content

Add our expire snapshots to fix Athena ICEBERG_CANNOT_OPEN_SPLIT #113

Add our expire snapshots to fix Athena ICEBERG_CANNOT_OPEN_SPLIT

Add our expire snapshots to fix Athena ICEBERG_CANNOT_OPEN_SPLIT #113

Workflow file for this run

name: "pr-build"
env:
# See: https://github.com/marketplace/actions/sccache-action
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
on:
workflow_dispatch:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Clone repository
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.63
override: true
default: true
# Use rust-cache to cache dependencies, which is a large chunk of the build.
- name: Cache Rust
uses: Swatinem/rust-cache@v2
with:
# Don't cache ./target, as it takes tons of space, rely on sccache instead.
cache-targets: false
# We set a shared key, as our cache is reusable between jobs
shared-key: rust-cargo
workspaces: lib/rust
# Use sccache to cache everything else.
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 11
- uses: gradle/gradle-build-action@v2
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: |
python -m pip install cargo-lambda
- name: Build
shell: bash
run: |
make -j package
# - uses: actions/upload-artifact@v3
# with:
# name: build-assets
# path: "matano*.sh*"