This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM mozillamarketplace/centos-python27-mkt:0.5 | |
| RUN mkdir -p /pip/{cache,build} | |
| ADD requirements /pip/requirements | |
| # Setting cwd to /pip ensures egg-links for git installed deps are created in /pip/src | |
| WORKDIR /pip | |
| RUN pip install -b /pip/build --download-cache /pip/cache --no-deps -r /pip/requirements/docker.txt | |
| EXPOSE 2601 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # using VirtualBox version $VBOX_VERSION | |
| FROM boot2docker/boot2docker | |
| RUN apt-get install p7zip-full | |
| RUN mkdir -p /vboxguest && \ | |
| cd /vboxguest && \ | |
| curl -L -o vboxguest.iso http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso && \ | |
| 7z x vboxguest.iso -ir'!VBoxLinuxAdditions.run' && \ | |
| sh VBoxLinuxAdditions.run --noexec --target . && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| -moz-box-sizing: border-box; | |
| /*box-sizing: border-box;*/ | |
| } | |
| .red { | |
| background: red; | |
| } | |
| .blue { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| casper: { | |
| options : { | |
| test : true, | |
| }, | |
| yourTask : { | |
| src: [grunt.option('test') || 'path/to/tests/*_test.js'], | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| env: | |
| - SLIMERJSLAUNCHER=$(which firefox) DISPLAY=:99.0 PATH=$TRAVIS_BUILD_DIR/slimerjs:$PATH | |
| addons: | |
| firefox: "24.0" | |
| before_script: | |
| - "sh -e /etc/init.d/xvfb start" | |
| - "echo 'Installing Slimer'" | |
| - "wget http://download.slimerjs.org/v0.8/slimerjs-0.8.3.zip" | |
| - "unzip slimerjs-0.8.3.zip" | |
| - "mv slimerjs-0.8.3 ./slimerjs" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://android.googlesource.com/platform/system/extras | |
| cd extras/ext4_utils | |
| git checkout android-4.1.1_r1 | |
| gcc -o simg2img -lz sparse_crc32.c simg2img.c | |
| ln -s ${PWD}/simg2img ~/bin/simg2img | |
| # Last step make sure ~/bin is in your $PATH. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hdiutil attach /Applications/Install\ OS\ X\ Mavericks.app/Contents/SharedSupport/InstallESD.dmg | |
| cd /tmp | |
| hdiutil convert /Volumes/OS\ X\ Install\ ESD/BaseSystem.dmg -format UDRW -o /tmp/RWBase | |
| hdiutil convert -format UDSP -o /tmp/sparseRWBase RWBase.dmg | |
| rm /tmp/RWBase.dmg | |
| hdiutil resize -size 6g /tmp/sparseRWBase.sparseimage | |
| hdiutil attach -owners on /tmp/sparseRWBase.sparseimage -shadow | |
| sudo rm /Volumes/OS\ X\ Base\ System/System/Installation/Packages | |
| sudo ditto /Volumes/OS\ X\ Install\ ESD/Packages /Volumes/OS\ X\ Base\ System/System/Installation/Packages | |
| hdiutil eject /Volumes/OS\ X\ Install\ ESD/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ro.secure=0 | |
| ro.allow.mock.location=1 | |
| ro.debuggable=1 | |
| persist.usb.serialno=full_inari | |
| persist.sys.usb.config=adb |