mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-12-22 11:29:23 +00:00
More CI fixes
This commit is contained in:
parent
30df7419b7
commit
d28090f292
5 changed files with 8 additions and 8 deletions
6
.github/workflows/c-cpp.yml
vendored
6
.github/workflows/c-cpp.yml
vendored
|
@ -12,7 +12,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build-alpine-static:
|
build-alpine-static:
|
||||||
|
|
||||||
timeout-minutes: 120
|
timeout-minutes: 180
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -597,7 +597,7 @@ jobs:
|
||||||
|
|
||||||
build-freebsd:
|
build-freebsd:
|
||||||
|
|
||||||
timeout-minutes: 75
|
timeout-minutes: 180
|
||||||
runs-on: ${{ matrix.os.host }}
|
runs-on: ${{ matrix.os.host }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -666,7 +666,7 @@ jobs:
|
||||||
|
|
||||||
build-openbsd:
|
build-openbsd:
|
||||||
|
|
||||||
timeout-minutes: 75
|
timeout-minutes: 180
|
||||||
runs-on: ${{ matrix.os.host }}
|
runs-on: ${{ matrix.os.host }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
|
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
|
@ -26,7 +26,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
name: Analyze
|
name: Analyze
|
||||||
timeout-minutes: 60
|
timeout-minutes: 180
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
actions: read
|
actions: read
|
||||||
|
|
2
.github/workflows/cppcheck.yml
vendored
2
.github/workflows/cppcheck.yml
vendored
|
@ -79,7 +79,7 @@ jobs:
|
||||||
- name: Build cppcheck
|
- name: Build cppcheck
|
||||||
run: |
|
run: |
|
||||||
cd cppcheck-main
|
cd cppcheck-main
|
||||||
& "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Msbuild\\Current\\Bin\\amd64\\msbuild.exe" /m /p:Configuration=Release /p:Platform=x64
|
& "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Msbuild\\Current\\Bin\\amd64\\msbuild.exe" -v:m /m /p:Configuration=Release /p:Platform=x64
|
||||||
|
|
||||||
- name: Setup cmake
|
- name: Setup cmake
|
||||||
uses: lukka/get-cmake@latest
|
uses: lukka/get-cmake@latest
|
||||||
|
|
2
.github/workflows/msvc-analysis.yml
vendored
2
.github/workflows/msvc-analysis.yml
vendored
|
@ -28,7 +28,7 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
name: Analyze
|
name: Analyze
|
||||||
timeout-minutes: 60
|
timeout-minutes: 180
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -219,8 +219,8 @@ public:
|
||||||
{
|
{
|
||||||
WriteLock lock(derivations_lock);
|
WriteLock lock(derivations_lock);
|
||||||
|
|
||||||
DerivationEntry& entry = derivations->emplace(index, DerivationEntry{ derivation, { 0xFFFFFFFFUL, 0xFFFFFFFFUL }, {}, t }).first->second;
|
auto entry = derivations->emplace(index, DerivationEntry{ derivation, { 0xFFFFFFFFUL, 0xFFFFFFFFUL }, {}, t }).first;
|
||||||
entry.add_view_tag(static_cast<uint32_t>(output_index << 8) | view_tag);
|
entry->second.add_view_tag(static_cast<uint32_t>(output_index << 8) | view_tag);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue