Skip to content

Instantly share code, notes, and snippets.

@cotsog
cotsog / travis.yml
Created February 10, 2016 02:26 — forked from sheki/travis.yml
pbcopy
sudo: false
language: node_js
env:
- BRIGHT_ENV=travis
before_install:
- rm -f node_modules
@cotsog
cotsog / .travis.yml
Created September 17, 2015 13:00
.travis.yml for gcc-4.9 compiler support on Travis CI
before_install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
@cotsog
cotsog / chrome_gyp_vcpp_express.patch
Created November 14, 2009 16:42
Apply this patch to the Google Chrome source tree so you can compile it with Visual C++ 2008 Express Edition without errors. See http://bit.ly/30slOj for more details.
Index: chrome/chrome.gyp
===================================================================
--- chrome/chrome.gyp (revision 32052)
+++ chrome/chrome.gyp (working copy)
@@ -2781,6 +2781,11 @@
'browser/views/tabs/tab_overview_types.cc',
'browser/views/tabs/tab_overview_types.h',
],
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
# Inspired from https://github.com/piwik/travis-scripts/blob/git-lfs/install_git_lfs.sh
# Change the remote because git lfs doesn't support git:// URLs
git remote set-url origin "https://$GITHUB_USER_TOKEN:@github.com/$TRAVIS_REPO_SLUG.git"
# Install it!
curl -sLo - https://github.com/github/git-lfs/releases/download/v0.5.2/git-lfs-linux-amd64-0.5.2.tar.gz | tar xzvf -
cd git-lfs-*
sudo ./install.sh
cd ..