mirror of
https://github.com/bitwarden/mobile
synced 2024-12-25 16:23:43 +01:00
52 lines
974 B
YAML
52 lines
974 B
YAML
name: Build
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
android:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Set up NuGet
|
|
uses: nuget/setup-nuget@v1
|
|
with:
|
|
nuget-version: 'latest'
|
|
|
|
- name: Set up MSBuild
|
|
uses: microsoft/setup-msbuild@v1.0.0
|
|
|
|
- name: Print environment
|
|
run: |
|
|
nuget help
|
|
msbuild -version
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Restore packages
|
|
run: nuget restore
|
|
|
|
- name: Build app
|
|
run: msbuild ./src/Android/Android.csproj /p:Configuration=Debug
|
|
|
|
ios:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Print environment
|
|
run: |
|
|
nuget help
|
|
msbuild -version
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Restore packages
|
|
run: nuget restore
|
|
|
|
- name: Build app
|
|
run: msbuild ./src/iOS/iOS.csproj /verbosity:normal /p:Platform=iPhone /p:Configuration=Debug
|