Skip to content

Commit

Permalink
Try to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
clehner committed Oct 19, 2020
1 parent 4eb61a6 commit df46ecf
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,26 @@ on:
env:
CARGO_TERM_COLOR: always

defaults:
run:
working-directory: didkit

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout DIDKit repository
uses: actions/checkout@v2
with:
path: didkit

- name: Checkout SSI library
uses: actions/checkout@v2
with:
repository: spruceid/ssi
token: ${{ secrets.GH_ACCESS_TOKEN_CEL }}
path: ssi
ref: ba1a39ba0f4c5ea284b993e766eaf34455cbac2f

- name: Cache Cargo registry and build artifacts
uses: actions/cache@v2
Expand Down Expand Up @@ -72,13 +80,13 @@ jobs:
run: $ANDROID_SDK_ROOT/tools/bin/sdkmanager ndk-bundle

- name: Test C FFI
run: make -C lib target/test/c.stamp
run: make -C lib ../target/test/c.stamp

- name: Test JNI
run: make -C lib target/test/java.stamp
run: make -C lib ../target/test/java.stamp

- name: Test Dart/Flutter plugin
run: make -C lib target/test/flutter.stamp
run: make -C lib ../target/test/flutter.stamp

- name: Build Android Archive
run: make -C lib target/test/aar.stamp
run: make -C lib ../target/test/aar.stamp

0 comments on commit df46ecf

Please sign in to comment.