Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
schwabe committed Apr 16, 2021
1 parent 6f12f5f commit e4597ec
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The name of our workflow
name: Build
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Use debug signing
run: mkdir -p ~/.gradle && echo -e "icsopenvpnDebugSign=true\norg.gradle.jvmargs=-Xmx2048M" > ~/.gradle/gradle.properties
- name: Checkout the code
uses: actions/checkout@v2
with:
submodules: true
- name: Build the app
run: ./gradlew assembleUiRelease
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
include(":main")
include(":tlsexternalcertprovider")
include(":remoteExample")
include(":yubikeyplugin")

0 comments on commit e4597ec

Please sign in to comment.