Skip to content

Bump xunit.runner.visualstudio from 2.4.2 to 2.8.1 in /src #131

Bump xunit.runner.visualstudio from 2.4.2 to 2.8.1 in /src

Bump xunit.runner.visualstudio from 2.4.2 to 2.8.1 in /src #131

name: Xamarin CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
BUILD_CONFIG: 'Release'
SOLUTION: 'src/WalletFramework.sln'
IS_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
IS_MAIN_BRANCH: ${{ github.ref == 'refs/heads/main' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set Version
run: |
sudo apt-get update && sudo apt-get install -y libxml2-utils
VERSION=$(xmllint --xpath "string(/Project/PropertyGroup/Version)" Directory.Build.props)
if $IS_MAIN_BRANCH; then
COMMIT_COUNT=$(git log --oneline | wc -l)
SUFFIX="-xam-rc.$COMMIT_COUNT"
elif $IS_PULL_REQUEST; then
COMMIT_COUNT=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/commits?per_page=100" | jq length)
SUFFIX="-xam-pr.${{ github.event.pull_request.number }}.$COMMIT_COUNT"
fi
echo "APP_VERSION=$VERSION$SUFFIX" >> $GITHUB_ENV
- name: Use Hyperledger Indy Sdk
run: |
oldInclude='Include="WalletFramework.Indy.Sdk"'
oldVersion='Version="$(WalletFrameworkIndySdkVersion)"'
newInclude='Include="Hyperledger.Indy.Sdk"'
newVersion='Version="1.11.1"'
sed -i "s|$oldInclude|$newInclude|g" src/Hyperledger.Aries/Hyperledger.Aries.csproj
sed -i "s|$oldVersion|$newVersion|g" src/Hyperledger.Aries/Hyperledger.Aries.csproj
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Restore dependencies
run: nuget restore $SOLUTION
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.*
# - name: Install libindy library
# run: |
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
# sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb bionic stable"
# sudo apt-get update \
# apt-get install -y libindy
- name: Build
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG -p:Version=$APP_VERSION --no-restore
#
# - name: Run tests
# run: dotnet test $SOLUTION --configuration $BUILD_CONFIG --no-restore --no-build --verbosity normal
- name: Pack WalletFramework
run: dotnet pack $SOLUTION --configuration $BUILD_CONFIG -p:Version=$APP_VERSION --no-build --output .
- name: Publish
run: nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}