Add part of Liri's changes on top of 0.27.2 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master, release-*] | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
- '[0-9]+.[0-9]+.[0-9]+-*' | |
pull_request: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Install .NET SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 7.0.x | |
- name: Build | |
run: dotnet build LibGit2Sharp.sln --configuration Release | |
- name: Upload packages | |
uses: actions/[email protected] | |
with: | |
name: NuGet packages | |
path: bin/Packages/ | |
retention-days: 7 | |
test: | |
name: Test / ${{ matrix.os }} / ${{ matrix.arch }} / ${{ matrix.tfm }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
arch: [ amd64 ] | |
os: [ macos-11 ] | |
tfm: [ net6.0, net7.0 ] | |
exclude: | |
- os: macos-11 | |
tfm: net472 | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Install .NET SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: | | |
7.0.x | |
6.0.x | |
- name: Run ${{ matrix.tfm }} tests | |
run: dotnet test LibGit2Sharp.sln --configuration Release --framework ${{ matrix.tfm }} --logger "GitHubActions" /p:ExtraDefine=LEAKS_IDENTIFYING | |
test-linux: | |
name: Test / ${{ matrix.distro }} / ${{ matrix.arch }} / ${{ matrix.tfm }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
arch: [ amd64 ] | |
distro: [ alpine.3.18, debian.11 ] | |
sdk: [ '6.0' ] | |
include: | |
- sdk: '6.0' | |
tfm: net6.0 | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup QEMU | |
if: matrix.arch == 'arm64' | |
run: docker run --rm --privileged multiarch/qemu-user-static:register --reset | |
- name: Run ${{ matrix.tfm }} tests | |
run: | | |
git_command="git config --global --add safe.directory /app" | |
test_command="dotnet test LibGit2Sharp.sln --configuration Release -p:TargetFrameworks=${{ matrix.tfm }} --logger "GitHubActions" -p:ExtraDefine=LEAKS_IDENTIFYING" | |
docker run -t --rm --platform linux/${{ matrix.arch }} -v "$PWD:/app" gittools/build-images:${{ matrix.distro }}-sdk-${{ matrix.sdk }} sh -c "$git_command && $test_command" | |