|
| 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" |
0 commit comments