mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
CI updates
This commit is contained in:
parent
67a4646a50
commit
689eb7f87b
1 changed files with 14 additions and 4 deletions
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
|
@ -9,9 +9,18 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
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
|
- name: Print environment
|
||||||
run: |
|
run: |
|
||||||
echo 'TODO'
|
nuget help
|
||||||
|
msbuild -version
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -19,7 +28,7 @@ jobs:
|
||||||
- name: Build app
|
- name: Build app
|
||||||
run: |
|
run: |
|
||||||
nuget restore
|
nuget restore
|
||||||
msbuild ./src/Android/Android.csproj /verbosity:normal /t:Rebuild /p:Configuration=Debug
|
msbuild ./src/Android/Android.csproj /p:Configuration=Debug
|
||||||
|
|
||||||
ios:
|
ios:
|
||||||
|
|
||||||
|
@ -28,7 +37,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Print environment
|
- name: Print environment
|
||||||
run: |
|
run: |
|
||||||
echo 'TODO'
|
nuget help
|
||||||
|
msbuild -version
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -36,4 +46,4 @@ jobs:
|
||||||
- name: Build app
|
- name: Build app
|
||||||
run: |
|
run: |
|
||||||
nuget restore
|
nuget restore
|
||||||
msbuild ./src/iOS/iOS.csproj /verbosity:normal /t:Rebuild /p:Platform=iPhoneSimulator /p:Configuration=Debug
|
msbuild /verbosity:normal /p:Platform=iPhone /p:Configuration=Debug
|
||||||
|
|
Loading…
Reference in a new issue