Skip to content

Commit

Permalink
Add gfx backend
Browse files Browse the repository at this point in the history
  • Loading branch information
Attila Dusnoki authored and Zakor Gyula committed Oct 31, 2018
1 parent b648c76 commit 4241e63
Show file tree
Hide file tree
Showing 52 changed files with 8,664 additions and 1,790 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ wrench/ron_frames

# System
.fuse_hidden*

# mac
.DS_Store
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ matrix:
- rust: nightly
os:
- linux
# - osx
- osx

# Travis is slow and often backlogged so we only run it on the "auto" branch
# which is what bors uses to test the merge commit when merging a PR. Individual
# PRs can catch errors by checking the taskcluster result instead.
branches:
only:
- auto
notifications:
webhooks: http://build.servo.org:54856/travis
- master
# notifications:
# webhooks: http://build.servo.org:54856/travis

addons:
apt:
Expand All @@ -39,18 +39,19 @@ before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zlib; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PKG_CONFIG_PATH="/usr/local/opt/zlib/lib/pkgconfig:$PKG_CONFIG_PATH"; fi
- pip install virtualenv
- virtualenv ../venv
- source ../venv/bin/activate
- python --version
- pip install mako voluptuous PyYAML servo-tidy
script:
- servo-tidy
# - servo-tidy
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender_api && cargo test --verbose --features "ipc"); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo check --verbose --no-default-features); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo check --verbose --no-default-features --features capture); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo check --verbose --features profiler,capture); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo check --verbose --features replay); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo check --verbose --no-default-features --features pathfinder); fi
# - if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo check --verbose --no-default-features --features pathfinder); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo check --verbose --no-default-features --features serialize_program); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd wrench && cargo check --verbose --features env_logger); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd examples && cargo check --verbose); fi
Expand Down
Loading

0 comments on commit 4241e63

Please sign in to comment.