-
Notifications
You must be signed in to change notification settings - Fork 65
117 lines (117 loc) · 3.43 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: CI
on:
push:
branches: [master, release-*]
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-*'
pull_request:
workflow_dispatch:
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
env:
RID: ${{ matrix.name }}
strategy:
matrix:
include:
- os: windows-2019
name: win-x86
param: -x86
- os: windows-2019
name: win-x64
param: -x64
- os: windows-2019
name: win-arm64
param: -arm64
- os: ubuntu-24.04
name: linux-x64
- os: ubuntu-24.04
name: linux-arm
- os: ubuntu-24.04
name: linux-arm64
- os: ubuntu-24.04
name: linux-ppc64le
- os: ubuntu-24.04
name: linux-musl-x64
- os: ubuntu-24.04
name: linux-musl-arm
- os: ubuntu-24.04
name: linux-musl-arm64
- os: macos-13
name: osx-x64
- os: macos-13
name: osx-arm64
- os: ubuntu-24.04
name: android-arm
param: -android-arm
- os: ubuntu-24.04
name: android-arm64
param: -android-arm64
fail-fast: false
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: true
- name: Build Windows
if: runner.os == 'Windows'
run: ./build.libgit2.ps1 ${{ matrix.param }}
- name: Build macOS
if: runner.os == 'macOS'
run: ./build.libgit2.sh
- name: Setup QEMU
if: contains(matrix.name, 'linux-musl-arm')
run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
- name: Setup Android NDK
if: contains(matrix.name, 'android')
run: |
chmod +x install_ndk.sh
./install_ndk.sh
- name: Force the correct SDK/NDK path
run: echo "ANDROID_TOOLCHAIN_ROOT=$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64" >> $GITHUB_ENV
- name: Debug environment
run: |
echo "ANDROID_SDK_ROOT=$ANDROID_SDK_ROOT"
echo "ANDROID_NDK=$ANDROID_NDK"
echo "ANDROID_TOOLCHAIN_ROOT=$ANDROID_TOOLCHAIN_ROOT"
which ndk-build || true
which ndk-which || true
- name: Build Linux
if: runner.os == 'Linux' && (!contains(matrix.name, 'android'))
run: ./dockerbuild.sh
- name: Build for Android
if: runner.os == 'Linux' && contains(matrix.name, 'android')
run: ./build.libgit2.sh
- name: Upload artifacts
uses: actions/[email protected]
with:
name: ${{ matrix.name }}
path: nuget.package/runtimes/${{ matrix.name }}
package:
name: Create package
needs: build
runs-on: ubuntu-24.04
env:
DOTNET_NOLOGO: true
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/[email protected]
with:
dotnet-version: 9.0.x
- name: Download artifacts
uses: actions/[email protected]
with:
path: nuget.package/runtimes/
- name: Create package
run: dotnet pack nuget.package
- name: Upload NuGet package
uses: actions/[email protected]
with:
name: NuGet package
path: ./nuget.package/*.nupkg