Skip to content

Commit

Permalink
wf
Browse files Browse the repository at this point in the history
  • Loading branch information
Zemurin committed Jan 28, 2025
1 parent 53a2f3c commit f8493f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
analyze:
name: Coverage Check Foreign
if: github.repository_owner != 'ParadoxGameConverters'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
fail-fast: false
Expand All @@ -76,7 +76,7 @@ jobs:
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev lcov ninja-build
cmake --preset x64-coverage-linux
cmake --build --preset build-x64-coverage-linux --target commonLib CommonItemsTests -- -j40
cmake --build --preset build-x64-coverage-linux --target commonLib CommonItemsTests -- -j3
- name: Run tests
run: |
Expand All @@ -90,7 +90,7 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: build/lcoverage/coverage.info
path-to-lcov: build/x64-coverage-linux/lcoverage/coverage.info

- name: Cleanup
uses: colpal/actions-clean@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_cmake_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ jobs:
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
cmake --preset x64-release-windows
cmake --build --preset build-x64-release-windows --target commonLib -- -j40
cmake --build --preset build-x64-release-windows --target commonLib CommonItemsTests -- -j3
- name: "Run tests"
run: |
cd $Env:GITHUB_WORKSPACE\build\x64-release-windows
CommonItemsTests.exe
.\CommonItemsTests.exe
- name: "Cleanup"
if: always()
Expand Down

0 comments on commit f8493f6

Please sign in to comment.