Update dependency AWSSDK.Translate to v3.7.300.95 #2373
Workflow file for this run
This file contains 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
name: CI | |
on: | |
push: | |
branches: | |
- dev8 | |
tags: | |
- "*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
if: ${{ ! startsWith(github.ref, 'refs/tags/') }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [ windows-latest ] | |
os: [ aigio-win10ltsc-vm ] | |
steps: | |
- name: Checkout repository | |
# if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
# - name: Checkout repository(BD.Git.Checkout.Tools) | |
# if: ${{ matrix.os == 'aigio-win10ltsc-vm' }} | |
# run: C:\actions-runner\checkout.exe ${{ github.workspace }} ${{ github.sha }} ${{ github.repositoryUrl }} | |
- name: Setup .NET | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install Android SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install android | |
- name: Install iOS SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install ios | |
- name: Install macOS SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install macos | |
- name: Install Mac Catalyst SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install maccatalyst | |
- name: Install Maui | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install maui | |
- name: Install wasm-tools | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install wasm-tools | |
# - name: Restore Workload | |
# run: dotnet workload restore | |
- name: Verify dotnet info | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet --info | |
- name: Build tools | |
run: dotnet build -c Release src\Tools.Build\Tools.Build.csproj --nologo -v q /property:WarningLevel=0 -p:AnalysisLevel=none -p:GeneratePackageOnBuild=false /nowarn:MSB4011,NU5048,NU5104,NU1506 | |
- name: Test projects | |
run: .\src\artifacts\bin\Tools.Build\release\Tools.Build.exe build --test | |
- name: UnitTest(Debug) | |
run: dotnet test src/BD.Common8.UnitTest/BD.Common8.UnitTest.csproj -c Debug -p:GeneratePackageOnBuild=false -p:AnalysisLevel=none --nologo -v q /property:WarningLevel=0 --logger:"trx;LogFilePrefix=testResults" /nowarn:MSB4011,NU5048,NU5104,NU1506 | |
- name: UnitTest(Release) | |
run: dotnet test src/BD.Common8.UnitTest/BD.Common8.UnitTest.csproj -c Release -p:GeneratePackageOnBuild=false -p:AnalysisLevel=none --nologo -v q /property:WarningLevel=0 --logger:"trx;LogFilePrefix=testResults" /nowarn:MSB4011,NU5048,NU5104,NU1506 | |
build: | |
name: Build | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [ windows-latest ] | |
os: [ aigio-win10ltsc-vm ] | |
steps: | |
- name: Checkout repository | |
# if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
# - name: Checkout repository(BD.Git.Checkout.Tools) | |
# if: ${{ matrix.os == 'aigio-win10ltsc-vm' }} | |
# run: C:\actions-runner\checkout.exe ${{ github.workspace }} ${{ github.sha }} ${{ github.repositoryUrl }} | |
- name: Setup .NET | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install Android SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install android | |
- name: Install iOS SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install ios | |
- name: Install macOS SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install macos | |
- name: Install Mac Catalyst SDK | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install maccatalyst | |
- name: Install Maui | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install maui | |
- name: Install wasm-tools | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet workload install wasm-tools | |
# - name: Restore Workload | |
# if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
# run: dotnet workload restore | |
- name: Verify dotnet info | |
if: ${{ matrix.os != 'aigio-win10ltsc-vm' }} | |
run: dotnet --info | |
- name: Build tools | |
run: dotnet build -c Release src\Tools.Build\Tools.Build.csproj --nologo -v q /property:WarningLevel=0 -p:AnalysisLevel=none -p:GeneratePackageOnBuild=false /nowarn:MSB4011,NU5048,NU5104,NU1506 | |
- name: Build projects | |
run: .\src\artifacts\bin\Tools.Build\release\Tools.Build.exe build | |
- name: Push NuGet packages | |
run: .\src\artifacts\bin\Tools.Build\release\Tools.Build.exe push --token_github ${{ secrets.RMBADMIN_TOKEN }} --token_nuget ${{ secrets.NUGET_API_KEY }} | |
- name: Delete nuget packages | |
if: ${{ matrix.os == 'aigio-win10ltsc-vm' }} | |
shell: cmd | |
run: del pkg /f /q | |
# release: | |
# name: Release | |
# needs: build | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Changelog | |
# uses: glennawatson/ChangeLog@v1 | |
# id: changelog | |
# - name: Create Release | |
# uses: ncipollo/release-action@v1 | |
# with: | |
# token: ${{ secrets.RMBADMIN_TOKEN }} | |
# body: ${{ steps.changelog.outputs.commitLog }} | |
# draft: false | |
# prerelease: false |