diff --git a/.github/workflows/publish-pipeline.yml b/.github/workflows/publish-pipeline.yml index d543e82..07246d7 100644 --- a/.github/workflows/publish-pipeline.yml +++ b/.github/workflows/publish-pipeline.yml @@ -27,7 +27,7 @@ jobs: publish-package: name: 'Build and publish package' needs: test-pipeline - runs-on: [self-hosted, linux, ARM64] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: 'RenameVersionTag' diff --git a/.github/workflows/test-pipeline.yml b/.github/workflows/test-pipeline.yml index ae81524..f283dfd 100644 --- a/.github/workflows/test-pipeline.yml +++ b/.github/workflows/test-pipeline.yml @@ -20,7 +20,7 @@ jobs: #Run unit tests on the test PLCs run-unit-tests: name: 'Run tests and documentation' - runs-on: self-hosted + runs-on: ubuntu-latest steps: - name: 'Setup dotnet' @@ -39,7 +39,7 @@ jobs: id: extract_branch - name: 'Run tests' - run: dotnet test "./MewtocolTests" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=../Builds/TestResults/coverage.opencover.xml + run: dotnet test "./MewtocolTests" --filter "FullyQualifiedName!~TestLivePLC" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=../Builds/TestResults/coverage.opencover.xml - name: 'Run docbuilder' continue-on-error: true