Skip to content

Commit 974c75a

Browse files
salty-flowerGitHub Actions YAML generator [bot]
and
GitHub Actions YAML generator [bot]
authored
build(CI): add AOT build of calculator demo
* build(CI): try adding automatic AOT build of demo * build(prettier): refine target file to exclude artifacts path * build: exclude `pdb` files when CI * build(CI): trigger generate-workflows when itself edited * ci: regenerate workflows * fix(CI): grant contents-write permission to create-prelease * ci: regenerate workflows * fix(CI): wrong path for artifacts * build(CI): try build arm64 from ubuntu * ci: regenerate workflows * build(CI): disable arm64 build * build(CI): add tags filter * ci: regenerate workflows * fix(CI): complete name of executable * build(CI): explictly state demo-calculator in release tag * build(CI): change triggers from branch-based to tag-based * ci: regenerate workflows * fix(CI): typos * ci: regenerate workflows --------- Co-authored-by: GitHub Actions YAML generator [bot] <[email protected]>
1 parent c00b00c commit 974c75a

6 files changed

+282
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
dotnet_setup: &dotnet_setup
2+
name: Setup .NET
3+
uses: actions/setup-dotnet@v4
4+
with:
5+
dotnet-version: "9"
6+
7+
upload_artifact: &upload_artifact
8+
uses: actions/upload-artifact@v4
9+
with:
10+
path: build/publish/ModelContextProtocol.NET.Demo.Calculator/release/ModelContextProtocol.NET.Demo.Calculator*
11+
name: ${{ matrix.name }}-build
12+
compression-level: 0
13+
14+
timeout-limit: &timeout-limit
15+
timeout-minutes: 10
16+
17+
no-fail-fast-strategy: &no-fail-fast-strategy
18+
fail-fast: false
19+
20+
use-docker-sdk-with-matrix: &use-docker-sdk-with-matrix
21+
<<: *timeout-limit
22+
23+
container:
24+
image: mcr.microsoft.com/dotnet/nightly/sdk:${{ matrix.tag }}
25+
options: --platform ${{ matrix.platform }}
26+
27+
steps:
28+
- uses: actions/checkout@v4
29+
- name: Build ${{ matrix.target }}
30+
run: dotnet publish
31+
- name: Upload ${{ matrix.target }} Artifact
32+
<<: *upload_artifact
33+
34+
---
35+
36+
name: Publish AOT Builds
37+
38+
on:
39+
push:
40+
tags:
41+
- "v*"
42+
- "v-demo*"
43+
workflow_dispatch:
44+
45+
jobs:
46+
build-native:
47+
strategy:
48+
matrix:
49+
include:
50+
- os: windows-latest
51+
name: windows
52+
- os: ubuntu-latest
53+
name: linux
54+
- os: macos-latest
55+
name: macos
56+
<<: *no-fail-fast-strategy
57+
58+
runs-on: ${{ matrix.os }}
59+
<<: *timeout-limit
60+
61+
steps:
62+
- uses: actions/checkout@v4
63+
- *dotnet_setup
64+
- name: Build ${{ matrix.name }}
65+
run: dotnet publish
66+
- name: Upload ${{ matrix.name }} Artifact
67+
<<: *upload_artifact
68+
69+
# build-docker-arm64:
70+
# strategy:
71+
# matrix:
72+
# include:
73+
# - target: linux-musl-arm64
74+
# name: linux-musl-arm64
75+
# platform: linux/arm64
76+
# tag: 9.0-alpine-aot-arm64v8
77+
# - target: linux-arm64
78+
# name: linux-arm64
79+
# platform: linux/arm64
80+
# tag: 9.0-noble-aot-arm64v8
81+
# <<: *no-fail-fast-strategy
82+
83+
# runs-on: macos-latest
84+
# <<: *use-docker-sdk-with-matrix
85+
86+
build-docker-amd64:
87+
strategy:
88+
matrix:
89+
include:
90+
- target: linux-musl-x64
91+
name: linux-musl-x64
92+
platform: linux/amd64
93+
tag: 9.0-alpine-aot-amd64
94+
95+
<<: *no-fail-fast-strategy
96+
97+
runs-on: ubuntu-latest
98+
<<: *use-docker-sdk-with-matrix
99+
100+
create-prerelease:
101+
permissions:
102+
contents: write
103+
needs: [build-native, build-docker-amd64]
104+
uses: ./.github/workflows/create-releases.yml
105+
with:
106+
workflow-file: "publish-calculator-demo-aot.yml"
107+
custom-tag: "NativeAOT"

.github/workflows/create-releases.yml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Create Releases
2+
on:
3+
workflow_dispatch:
4+
workflow_call:
5+
inputs:
6+
workflow-file:
7+
type: string
8+
required: true
9+
custom-tag:
10+
type: string
11+
required: false
12+
13+
jobs:
14+
create-prerelease:
15+
runs-on: ubuntu-latest
16+
permissions:
17+
contents: write
18+
steps:
19+
- name: Download all artifacts
20+
uses: dawidd6/action-download-artifact@v6
21+
with:
22+
workflow: ${{ inputs.workflow-file }}
23+
workflow_conclusion: success
24+
run_id: ${{ github.run_id }}
25+
run_number: ${{ github.run_number }}
26+
27+
- name: Prepare release assets
28+
run: |
29+
mkdir release_assets
30+
for dir in *-build; do
31+
platform=$(echo $dir | cut -d'-' -f1)
32+
case $platform in
33+
linux)
34+
cp "$dir"/ModelContextProtocol.NET.Demo.Calculator "release_assets/ModelContextProtocol.NET.Demo.Calculator-$dir"
35+
;;
36+
windows)
37+
cp "$dir"/ModelContextProtocol.NET.Demo.Calculator.exe "release_assets/ModelContextProtocol.NET.Demo.Calculator-$dir.exe"
38+
;;
39+
macos)
40+
find "$dir" -type f -not -name "*.dSYM" -exec cp {} "release_assets/ModelContextProtocol.NET.Demo.Calculator-$dir" \;
41+
;;
42+
esac
43+
done
44+
ls -laR release_assets
45+
- name: Generate release tag
46+
id: tag
47+
run: |
48+
echo "::set-output name=release_tag::Demo-Calculator-${{ inputs.custom-tag }}-$(date +"%Y.%m.%d-%H-%M")"
49+
- name: Create GitHub pre-release
50+
uses: softprops/action-gh-release@v2
51+
with:
52+
files: release_assets/*
53+
tag_name: ${{ steps.tag.outputs.release_tag }}
54+
prerelease: true
55+
generate_release_notes: true
56+
env:
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Generate workflows
2+
3+
on:
4+
push:
5+
paths:
6+
- ".github/real-workflows/*.yml"
7+
- ".github/workflows/generate-workflows.yml"
8+
9+
jobs:
10+
generate-workflows:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Run locally
14+
uses: "DanySK/[email protected]" # pick the latest version maybe
15+
with:
16+
token: ${{ secrets.WORKFLOW_TOKEN }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
name: Publish AOT Builds
2+
on:
3+
push:
4+
tags:
5+
- "v*"
6+
- "v-demo*"
7+
workflow_dispatch:
8+
jobs:
9+
build-native:
10+
strategy:
11+
matrix:
12+
include:
13+
- os: windows-latest
14+
name: windows
15+
- os: ubuntu-latest
16+
name: linux
17+
- os: macos-latest
18+
name: macos
19+
fail-fast: false
20+
runs-on: ${{ matrix.os }}
21+
timeout-minutes: 10
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Setup .NET
25+
uses: actions/setup-dotnet@v4
26+
with:
27+
dotnet-version: "9"
28+
- name: Build ${{ matrix.name }}
29+
run: dotnet publish
30+
- name: Upload ${{ matrix.name }} Artifact
31+
uses: actions/upload-artifact@v4
32+
with:
33+
path: build/publish/ModelContextProtocol.NET.Demo.Calculator/release/ModelContextProtocol.NET.Demo.Calculator*
34+
name: ${{ matrix.name }}-build
35+
compression-level: 0
36+
# build-docker-arm64:
37+
# strategy:
38+
# matrix:
39+
# include:
40+
# - target: linux-musl-arm64
41+
# name: linux-musl-arm64
42+
# platform: linux/arm64
43+
# tag: 9.0-alpine-aot-arm64v8
44+
# - target: linux-arm64
45+
# name: linux-arm64
46+
# platform: linux/arm64
47+
# tag: 9.0-noble-aot-arm64v8
48+
# <<: *no-fail-fast-strategy
49+
50+
# runs-on: macos-latest
51+
# <<: *use-docker-sdk-with-matrix
52+
build-docker-amd64:
53+
strategy:
54+
matrix:
55+
include:
56+
- target: linux-musl-x64
57+
name: linux-musl-x64
58+
platform: linux/amd64
59+
tag: 9.0-alpine-aot-amd64
60+
fail-fast: false
61+
runs-on: ubuntu-latest
62+
timeout-minutes: 10
63+
container:
64+
image: mcr.microsoft.com/dotnet/nightly/sdk:${{ matrix.tag }}
65+
options: --platform ${{ matrix.platform }}
66+
steps:
67+
- uses: actions/checkout@v4
68+
- name: Build ${{ matrix.target }}
69+
run: dotnet publish
70+
- name: Upload ${{ matrix.target }} Artifact
71+
uses: actions/upload-artifact@v4
72+
with:
73+
path: build/publish/ModelContextProtocol.NET.Demo.Calculator/release/ModelContextProtocol.NET.Demo.Calculator*
74+
name: ${{ matrix.name }}-build
75+
compression-level: 0
76+
create-prerelease:
77+
permissions:
78+
contents: write
79+
needs: [build-native, build-docker-amd64]
80+
uses: ./.github/workflows/create-releases.yml
81+
with:
82+
workflow-file: "publish-calculator-demo-aot.yml"
83+
custom-tag: "NativeAOT"

Directory.Build.props

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212
<PublishReadyToRun>true</PublishReadyToRun>
1313
</PropertyGroup>
1414

15+
<PropertyGroup Condition="'$(ContinuousIntegrationBuild)' == 'true'">
16+
<StripSymbols>true</StripSymbols>
17+
<DebugSymbols>false</DebugSymbols>
18+
<DebugType>none</DebugType>
19+
<InvariantGlobalization>true</InvariantGlobalization>
20+
</PropertyGroup>
21+
1522
<!-- Solution properties -->
1623
<PropertyGroup>
1724
<SolutionDir Condition="'$(SolutionDir)' == ''">

tools/prettier/prettier.targets

+12-7
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,25 @@
1212
$(MSBuildThisFileDirectory)../../**/*.{$(Extensions.Trim())}
1313
</WriteGlob>
1414
<IgnoreGlob>
15-
$([MSBuild]::MakeRelative($(PrettierDir), $(ArtifactsPath)));
16-
**/bin/**;
17-
**/obj/**
15+
$(SolutionDir).github/real-workflows/**;
16+
$(ArtifactsPath);
17+
**/bin/**;
18+
**/obj/**
1819
</IgnoreGlob>
1920
</PropertyGroup>
2021

2122
<!-- Generate .prettierignore file -->
22-
<Target BeforeTargets="FormatXml" Name="GeneratePrettierIgnore">
23+
<Target Name="GeneratePrettierIgnore">
2324
<ItemGroup>
2425
<!-- Split and create items, then transform paths -->
2526
<_RawIgnoreLines Include="$(IgnoreGlob.Split(';'))" />
26-
<IgnoreLines
27+
<_RelativeIgnoreLines
2728
Include="@(_RawIgnoreLines)"
28-
NormalizedPath="$([System.String]::new('%(Identity)').Replace('\', '/'))"
29+
RelativePath="$([MSBuild]::MakeRelative($(PrettierDir),'%(Identity)'))"
30+
/>
31+
<IgnoreLines
32+
Include="@(_RelativeIgnoreLines)"
33+
NormalizedPath="$([System.String]::new('%(RelativePath)').Replace('\', '/'))"
2934
/>
3035
</ItemGroup>
3136

@@ -100,7 +105,7 @@
100105

101106
<Target
102107
BeforeTargets="Restore"
103-
DependsOnTargets="RestorePrettierTools"
108+
DependsOnTargets="RestorePrettierTools;GeneratePrettierIgnore"
104109
Name="FormatPrettier"
105110
>
106111
<Exec

0 commit comments

Comments
 (0)