From fc3042bb34f621b12839e73e8b208cb929d5a0a0 Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Tue, 25 Jan 2022 01:13:29 +0100 Subject: [PATCH] CI: add remote-reader --- .github/build-remote-reader.sh | 11 +++++++++++ .github/workflows/ci.yml | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100755 .github/build-remote-reader.sh diff --git a/.github/build-remote-reader.sh b/.github/build-remote-reader.sh new file mode 100755 index 0000000..cad01c8 --- /dev/null +++ b/.github/build-remote-reader.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# CI script + +set -ex -o xtrace + +pushd remote-reader + +./gradlew build + +popd diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6503d60..c904a94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,3 +80,14 @@ jobs: name: pcsc-relay-mingw-64 path: pcsc-relay/src/pcsc-relay.exe + + remote-reader-ubuntu: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - run: .github/build-remote-reader.sh + - uses: actions/upload-artifact@v2 + with: + name: remote-reader + path: + remote-reader/app/build/outputs/apk/*/*.apk