Add account hashes to logdbhashes #880
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests - Jellyfish Whale Apis | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
- ocean-catchup-on-startup | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
env: | |
TARGET: x86_64-pc-linux-gnu | |
MAKE_DEBUG: 0 | |
GIT_VERSION: 1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: defi/ain-builder:latest | |
env: | |
CARGO_INCREMENTAL: 0 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git config --global --add safe.directory '*' | |
- name: Populate environment | |
run: ./make.sh ci-export-vars | |
- name: Setup dependencies | |
run: ./make.sh ci-setup-deps | |
- name: Setup user dependencies | |
run: ./make.sh ci-setup-user-deps | |
- name: Restore cpp build cache | |
id: cpp-cache-restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
./build/depends | |
./build/src | |
~/.ccache | |
key: cpp-${{ env.TARGET }}-${{ env.BUILD_TYPE }} | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: lib -> ../build/lib/target | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
shared-key: ${{ env.TARGET }} | |
- name: Build binaries | |
run: ./make.sh build | |
- name: Upload binaries | |
uses: actions/upload-artifact@v3 | |
with: | |
name: defi-bins | |
path: build/src/defid | |
test: | |
name: Jellyfish Whale Api tests | |
runs-on: ubuntu-latest | |
needs: [build] | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: birthdayresearch/jellyfishsdk | |
# ref: 'main' | |
ref: 'canonbrother/whale-defid' # TODO(): remove before merge to master | |
- name: Download binaries | |
uses: actions/download-artifact@v3 | |
with: | |
name: defi-bins | |
- name: Setup permissions | |
run: | | |
chmod uog+x "$(pwd)/defid" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Run tests | |
run: | | |
npm ci | |
DEFID="$(pwd)/defid" npm run defid apps/whale-api/src/module.api/__defid__ |