Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Compile a snapshot before testing on Travis #7

Merged
merged 1 commit into from
Nov 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ before_script:
# Format the generated code or else the formatter task will get upset.
- dartfmt -w --fix lib/src/embedded_sass.pb*

# TODO(nweiz): always compile native when we're running on Dart 2.7.
- if [[ "$TRAVIS_OS_NAME" = windows ]]; then
pub run grinder pkg-compile-snapshot;
else
pub run grinder pkg-compile-native;
fi

jobs:
include:

Expand Down