Skip to content

Commit

Permalink
Test the vibe-d:http experimental configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Feb 9, 2021
1 parent 6aea1ad commit 211bfed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
# Default
- { parts: 'builds,unittests,examples,tests,mongo', extra_dflags: '' }
# Custom part for coverage
- { dc: dmd-2.094.2, parts: 'unittests,tests', extra_dflags: "-cov -version=VibedSetCoverageMerge" }
- { os: ubuntu-latest, dc: dmd-2.094.2, parts: 'unittests,tests', extra_dflags: "-cov -version=VibedSetCoverageMerge" }
- { os: ubuntu-latest, dc: ldc-latest, parts: 'unittests,examples,tests,vibe-http', extra_dflags: '' }

runs-on: ${{ matrix.os }}
timeout-minutes: 60
Expand Down
4 changes: 4 additions & 0 deletions travis-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ DUB_ARGS="--build-mode=${DUB_BUILD_MODE:-separate} ${DUB_ARGS:-}"
# default to run all parts
: ${PARTS:=lint,builds,unittests,examples,tests,meson}

if [[ $PARTS =~ (^|,)vibe-http(,|$) ]]; then
DUB_ARGS="${DUB_ARGS} --override-config vibe-d:http/experimental"
fi

if [[ $PARTS =~ (^|,)lint(,|$) ]]; then
./scripts/test_version.sh
# Check for trailing whitespace"
Expand Down

0 comments on commit 211bfed

Please sign in to comment.