Skip to content

Commit

Permalink
ci: update ci-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Aug 27, 2020
1 parent af50c09 commit 3a52d20
Showing 3 changed files with 10 additions and 9 deletions.
9 changes: 4 additions & 5 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -31,22 +31,21 @@ environment:

# Platform: processor architecture
platform:
# - x86
- x64

install:
- cmd: git submodule update --init --recursive
- cmd: python .ci/appveyor/do.py prepare

build_script:
- cmd: python .ci/appveyor/do.py build
- cmd: python .ci/cue.py prepare
- cmd: python .ci/cue.py build

test_script:
- cmd: python .ci/appveyor/do.py test
- cmd: python .ci/cue.py test

on_finish:
- ps: Get-ChildItem *.tap -Recurse -Force | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- cmd: python .ci/appveyor/do.py build test-results -s
- cmd: python .ci/cue.py test-results

notifications:
- provider: GitHubPullRequest
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -23,14 +23,16 @@ addons:
- qemu-system-x86

install:
- ./.ci/travis/prepare.sh
- python .ci/cue.py prepare

script:
- ./.ci/travis/build.sh
- python .ci/cue.py build
- python .ci/cue.py test
- python .ci/cue.py test-results

jobs:
include:
- env: BASE=7.0 STATIC=YES
- env: BASE=7.0 BCFG=static

- env: BASE=7.0

0 comments on commit 3a52d20

Please sign in to comment.