Build #215
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: Build | |
on: | |
push: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
env: | |
Configuration: Release | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
mssql: | |
image: mcr.microsoft.com/mssql/server:2022-latest | |
env: | |
ACCEPT_EULA: 1 | |
SA_PASSWORD: P@ssw0rd | |
ports: | |
- 31433:1433 | |
postgres: | |
image: postgres:alpine | |
env: | |
POSTGRES_USER: npgsql_tests | |
POSTGRES_PASSWORD: npgsql_tests | |
ports: | |
- 5432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: "Determine prerequisites" | |
id: prereq | |
run: | | |
echo "need_node=$(command -v node >/dev/null 2>&1 && echo 0 || echo 1)" >> $GITHUB_OUTPUT | |
echo "need_yarn=$(command -v yarn >/dev/null 2>&1 && echo 0 || echo 1)" >> $GITHUB_OUTPUT | |
# Consider switching to https://github.com/actions/setup-node when it works | |
# https://github.com/nektos/act/issues/973 | |
- name: Install node | |
if: ${{ steps.prereq.outputs.need_node == '1' }} | |
run: | | |
if [ "${RUNNER_OS,,}" = "windows" ] | |
then | |
choco install nodejs -y | |
echo "C:\Program Files\nodejs" >> $GITHUB_PATH | |
else | |
curl -sS https://webi.sh/node | sh | |
echo ~/.local/opt/node/bin >> $GITHUB_PATH | |
fi | |
- name: Install yarn | |
if: ${{ steps.prereq.outputs.need_yarn == '1' }} | |
run: | | |
if [ "${RUNNER_OS,,}" = "windows" ] | |
then | |
choco install yarn -y | |
echo "C:\Program Files (x86)\Yarn\bin" >> $GITHUB_PATH | |
else | |
npm install -g yarn | |
fi | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | |
- run: yarn install | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
9.0.x | |
- uses: dotnet/nbgv@master | |
id: nbgv | |
with: | |
setAllVars: true | |
- run: nbgv cloud | |
- run: dotnet tool restore | |
- name: "Run pre-commit hooks" | |
shell: bash | |
run: sh $(git config core.hooksPath)/pre-commit normal | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c Release --no-restore | |
- name: Test | |
env: | |
Zomp_EF_Data__SqlServerConnectionString: Server=localhost,31433;Database={0};User ID=sa;Password=P@ssw0rd;MultipleActiveResultSets=true;Connect Timeout=30;TrustServerCertificate=True; | |
run: dotnet test -c Release --no-build --verbosity normal --settings tests/coverlet.runsettings | |
- name: Generate code coverage report | |
run: dotnet tool run reportgenerator -reports:**/coverage.cobertura.xml -targetdir:./reports/coverage | |
- name: Upload artifacts (code coverage) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: reports/coverage | |
- name: Pack | |
run: dotnet pack --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages --no-build | |
- name: Upload artifacts (.nupkg) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: packages | |
path: packages/ | |
publish: | |
needs: build | |
runs-on: windows-latest | |
steps: | |
- name: Download Package artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: packages | |
path: packages | |
- run: dotnet tool install nugetkeyvaultsigntool --tool-path . --version 3.2.3 | |
- name: Sign Nuget Files | |
run: .\NuGetKeyVaultSignTool sign packages\*.nupkg -kvt ${{ secrets.AZURE_TENANT_ID }} -kvu ${{ secrets.AZURE_KEY_VAULT_URL }} -kvi ${{ secrets.AZURE_KEY_VAULT_CLIENT_ID }} -kvs ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }} -kvc ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE }} -tr ${{ secrets.TIMESTAMP_RFC3161 }} | |
- name: Verify signatures | |
run: .\NuGetKeyVaultSignTool verify packages\*.nupkg | |
- name: Push to MyGet | |
if: ${{ env.MYGET_PUSH_KEY != '' }} | |
run: dotnet nuget push packages\*.nupkg -s https://www.myget.org/F/zomp-efcore-extensions/api/v3/index.json -k ${{ secrets.MYGET_PUSH_KEY }} | |
env: | |
MYGET_PUSH_KEY: ${{ secrets.MYGET_PUSH_KEY }} | |
- name: Push to NuGet | |
if: ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master' }} | |
run: dotnet nuget push packages\*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_PUSH_KEY }} |