Select() support for TimeSpan. Not complete LINQ support yet. Closes … #909
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: build_net8.0 pg15 Json.NET | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'documentation/**' | |
- 'docs/**' | |
- 'azure-pipelines.yml' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'documentation/**' | |
- 'docs/**' | |
- 'azure-pipelines.yml' | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
node_version: 16.x | |
pg_db: marten_testing | |
pg_user: postgres | |
CONFIGURATION: Release | |
FRAMEWORK: net8.0 | |
DISABLE_TEST_PARALLELIZATION: true | |
DEFAULT_SERIALIZER: "Newtonsoft" | |
NUKE_TELEMETRY_OPTOUT: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
services: | |
postgres: | |
image: postgres:15-alpine | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
POSTGRES_DB: ${{ env.pg_db }} | |
NAMEDATALEN: 150 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
--user postgres | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install .NET 6.0.x | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install .NET 7.0.x | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Install .NET 8.0.x | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install .NET Aspire workload | |
run: | | |
dotnet workload update | |
dotnet workload install aspire | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.node_version }} | |
- name: Optimize database for running tests faster | |
run: | | |
PG_CONTAINER_NAME=$(docker ps --filter expose=5432/tcp --format {{.Names}}) | |
docker exec $PG_CONTAINER_NAME bash -c "echo -e '\nfsync = off' >> /var/lib/postgresql/data/postgresql.conf" | |
docker exec $PG_CONTAINER_NAME bash -c "echo -e '\nfull_page_writes = off' >> /var/lib/postgresql/data/postgresql.conf" | |
docker exec $PG_CONTAINER_NAME bash -c "echo -e '\nsynchronous_commit = off' >> /var/lib/postgresql/data/postgresql.conf" | |
docker container restart $PG_CONTAINER_NAME | |
shell: bash | |
- name: compile | |
run: ./build.sh compile | |
shell: bash | |
- name: mocha | |
if: ${{ success() || failure() }} | |
run: ./build.sh mocha | |
shell: bash | |
- name: test-base-lib | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-base-lib | |
shell: bash | |
- name: test-core | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-core | |
shell: bash | |
- name: test-document-db | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-document-db | |
shell: bash | |
- name: test-event-sourcing | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-event-sourcing | |
shell: bash | |
- name: test-cli | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-cli | |
shell: bash | |
- name: test-linq | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-linq | |
shell: bash | |
# - name: test-multi-tenancy | |
# if: ${{ success() || failure() }} | |
# run: ./build.sh test-multi-tenancy | |
# shell: bash | |
- name: test-patching | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-patching | |
shell: bash | |
- name: test-value-types | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-value-types | |
shell: bash | |
- name: test-code-gen | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-code-gen | |
shell: bash | |
- name: test-noda-time | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-noda-time | |
shell: bash | |
- name: test-aspnet-core | |
if: ${{ success() || failure() }} | |
run: ./build.sh test-aspnet-core | |
shell: bash |