Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable optimized builds on Travis #3313

Closed
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Enable optimized builds on Travis

  • Loading branch information
larsbergstrom committed Sep 12, 2014
commit 47e939367b4ce77807f27bcab35768a8c73d0a11
@@ -16,11 +16,11 @@ build_docs() {
}

build_servo() {
./mach build -j 2
./mach build --release -j 2
}

build_cef() {
./mach build-cef -j 2
./mach build-cef --release -j 2
}

IFS="," read -ra tasks <<< "${TASKS}"
@@ -37,10 +37,10 @@ for t in "${tasks[@]}"; do

case $t in
build)
./mach build -j 2
./mach build --release -j 2
;;
build-cef)
./mach build-cef -j 2
./mach build-cef --release -j 2
;;
test-content)
./mach test-content
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.