Merge branch 'master' into quic
This commit is contained in:
commit
beaed7c4e3
|
@ -17,6 +17,11 @@ on:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: "[]"
|
default: "[]"
|
||||||
|
use_sat_solver:
|
||||||
|
description: 'Install dependencies with SAT Solver'
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||||
|
@ -86,4 +91,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
nim --version
|
nim --version
|
||||||
nimble --version
|
nimble --version
|
||||||
NIMFLAGS="${NIMFLAGS} --mm:${{ matrix.nim.memory_management }}" nimble test
|
|
||||||
|
if [[ "${{ inputs.use_sat_solver }}" == "true" ]]; then
|
||||||
|
dependency_solver="sat"
|
||||||
|
else
|
||||||
|
dependency_solver="legacy"
|
||||||
|
fi
|
||||||
|
|
||||||
|
NIMFLAGS="${NIMFLAGS} --mm:${{ matrix.nim.memory_management }} --solver:${dependency_solver}"
|
||||||
|
nimble test
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
name: Daily SAT
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "30 6 * * *"
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test_amd64:
|
||||||
|
name: Daily SAT
|
||||||
|
uses: ./.github/workflows/daily_common.yml
|
||||||
|
with:
|
||||||
|
nim: "[{'branch': 'version-2-0', 'memory_management': 'refc'}]"
|
||||||
|
cpu: "['amd64']"
|
||||||
|
use_sat_solver: true
|
|
@ -56,7 +56,7 @@ proc new*(
|
||||||
stream.initStream()
|
stream.initStream()
|
||||||
return stream
|
return stream
|
||||||
|
|
||||||
template mapExceptions(body: untyped) =
|
template mapExceptions(body: untyped): untyped =
|
||||||
try:
|
try:
|
||||||
body
|
body
|
||||||
except AsyncStreamIncompleteError:
|
except AsyncStreamIncompleteError:
|
||||||
|
|
Loading…
Reference in New Issue