fix time serialization (#127) #539
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
| name: Parallel Tests | |
| on: | |
| push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| java-package: jdk | |
| - name: Build project | |
| id: build | |
| run: | | |
| mvn clean install -Pbuild-only | |
| - name: Upload m2 | |
| id: upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: m2-repo | |
| path: ~/.m2 | |
| if-no-files-found: error | |
| include-hidden-files: true | |
| test: | |
| needs: [ "build" ] | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| module: [ customer-bill-management, customer-management, party-catalog, party-role, product-catalog, product-inventory, product-ordering-management, resource-catalog, resource-function-activation, resource-inventory, service-catalog, usage-management, service-inventory, agreement, account, quote ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| java-package: jdk | |
| - name: Restore m2 | |
| id: download | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: m2-repo | |
| path: ~/.m2 | |
| - name: Ensure br_netfilter is enabled. | |
| run: | | |
| sudo modprobe br_netfilter | |
| - name: Execute tests | |
| id: test | |
| run: | | |
| mvn test integration-test verify -B --projects ${{matrix.module}} -Dmicronaut.environments=in-memory,orion-ld |