-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (53 loc) · 1.73 KB
/
Copy pathci.yml
File metadata and controls
66 lines (53 loc) · 1.73 KB
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
name: CI
on:
- push
- pull_request
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
# Always run main branch builds to completion.
fail-fast: ${{ github.event_name == 'pull_request' ||
(github.ref != 'refs/heads/main' &&
!startsWith(github.ref, 'refs/tags/')) }}
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
env:
DOTNET_NOLOGO: 'true'
DOTNET_CLI_TELEMETRY_OPTOUT: 'true'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true'
steps:
- name: ⏬ Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: 🔽 Install dotnet
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
- name: 🔍 Print dotnet info
run: dotnet --info
- id: version
name: 🔍 Determine Version
shell: bash
run: |
VERSION=$(cat version.txt)
echo "VERSION: '$VERSION'"
echo "::set-output name=version::$VERSION"
- name: 🔽 Restore
run: dotnet restore -p:Configuration=Release
- name: 🔨 Build
run: dotnet build --configuration Release
- name: 📦 Pack
run: dotnet pack --configuration Release --no-build
- name: 🧪 Test (build samples)
run: dotnet build -p:YoloDevSdkVersion=${{ steps.version.outputs.version }}
working-directory: sample
- name: 💾 Upload artifacts
if: success() && matrix.os == 'windows-latest'
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: yolo-dev-sdk
path: artifacts