APMSP-1542 ci: setup building nuget packages in CI #46
Workflow file for this run
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| name: .NET | |
| env: | |
| BRANCH: ${{ github.head_ref || github.ref_name }} | |
| COMMIT_SHA: ${{ github.sha }} | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest, macos-latest] | |
| target: [ | |
| x86_64-pc-windows-msvc, | |
| i686-pc-windows-msvc, | |
| x86_64-apple-darwin, | |
| aarch64-apple-darwin | |
| ] | |
| exclude: | |
| - os: windows-latest | |
| target: x86_64-apple-darwin | |
| - os: windows-latest | |
| target: aarch64-apple-darwin | |
| - os: macos-latest | |
| target: x86_64-pc-windows-msvc | |
| - os: macos-latest | |
| target: i686-pc-windows-msvc | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install rustup | |
| if: matrix.os == 'windows-latest' | |
| run: | | |
| $ProgressPreference = "SilentlyContinue" | |
| Invoke-WebRequest https://win.rustup.rs/ -OutFile rustup-init.exe | |
| .\rustup-init.exe -y --default-host=${{ matrix.target }} --default-toolchain=none | |
| del rustup-init.exe | |
| rustup target add ${{ matrix.target }} | |
| shell: powershell | |
| - name: Install rustup | |
| if: matrix.os == 'macos-latest' | |
| run: | | |
| curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
| source $HOME/.cargo/env | |
| rustup target add ${{ matrix.target }} | |
| shell: bash | |
| - name: Build on Windows | |
| if: matrix.os == 'windows-latest' | |
| run: .\windows\build\build.ps1 -output_dir .\bin -targets ${{ matrix.target }} | |
| shell: pwsh | |
| - name: Build on macOS | |
| if: matrix.os == 'macos-latest' | |
| run: | | |
| ./windows/build/build.sh -o ./bin -t ${{ matrix.target }} | |
| shell: bash | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.os }}-bin-${{ matrix.target }} | |
| path: | | |
| bin/* | |
| !bin/*/*/build | |
| !bin/*/*/deps | |
| !bin/*/*/examples | |
| !bin/*/*/incremental | |
| pack: | |
| runs-on: windows-latest | |
| needs: build | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Download Windows artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: windows-latest-bin-x86_64-pc-windows-msvc | |
| path: bin | |
| - name: Download Windows artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: windows-latest-bin-i686-pc-windows-msvc | |
| path: bin | |
| - name: Download Mac artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: macos-latest-bin-x86_64-apple-darwin | |
| path: bin | |
| - name: Download Mac artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: macos-latest-bin-aarch64-apple-darwin | |
| path: bin | |
| - name: Set version | |
| run: | | |
| # 13.1.0-preview.{epoch} format | |
| $epoch = [math]::Floor((Get-Date).Subtract([datetime]'1970-01-01').TotalSeconds) | |
| $env:VERSION = "13.1.0-preview.$epoch" | |
| echo "Version: $env:VERSION" | |
| - name: Pack | |
| run: | | |
| dotnet pack .\windows\libdatadog.csproj ` | |
| -p:LibDatadogBinariesOutputDir=..\bin ` | |
| -p:LibDatadogVersion=$env:VERSION ` | |
| -p:RepositoryBranch=$env:BRANCH ` | |
| -p:RepositoryCommit=$env:COMMIT_SHA ` | |
| -o .nuget\packages\ | |
| - name: Store artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: packages-$env:VERSION | |
| path: .nuget/packages/* | |
| if-no-files-found: error |