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
| # YouTube (english) : https://www.youtube.com/watch?v=FtU2_bBfSgM | |
| # YouTube (french) : https://www.youtube.com/watch?v=VjnaVBnERDU | |
| # | |
| # On your laptop, connect to the Mac instance with SSH (similar to Linux instances) | |
| # | |
| ssh -i <your private key.pem> ec2-user@<your public ip address> | |
| # | |
| # On the Mac |
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
| #!/bin/bash | |
| # Install stable version | |
| sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo | |
| sudo rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key | |
| sudo yum install jenkins | |
| # Install Java version 1.8 | |
| wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u144-b01/090f390dda5b47b9b721c7dfaa008135/jre-8u144-linux-x64.rpm" | |
| sudo yum localinstall jre-8u144-linux-x64.rpm | |
| wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u144-b01/090f390dda5b47b9b721c7dfaa008135/jdk-8u144-linux-x64.rpm" | |
| sudo yum localinstall jdk-8u144-linux-x64.rpm |
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
| fastlane_version "1.94.0" | |
| default_platform :ios | |
| platform :ios do | |
| desc "Run Unity Editor tests" | |
| lane :test_unit do | |
| unity( | |
| run_editor_tests: true | |
| ) |
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
| - Check Bootloader Version: | |
| > bdmesg|head |
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
| <div class="btn-group"> | |
| <a class="btn" style="margin-top:10px;height:20px;width:80px"> | |
| <i class="icon-search" style="margin-top:2px;"></i> Tìm kiếm | |
| <input type="submit" style="opacity:0; margin-top:-6px;margin-left:-86px;width:105px" class="btn"> | |
| </a> | |
| <!-- BEGIN: button --> | |
| <a type="link" href='{LINK}' style="margin-top:10px" class="btn btn-primary"> | |
| <i class="icon-ok icon-white"></i> {VALUE} | |
| </a> | |
| <!-- END: button --> |