I hereby claim:
- I am jaxzin on github.
- I am jaxzin (https://keybase.io/jaxzin) on keybase.
- I have a public key whose fingerprint is 2CDD E247 9125 9D15 4E83 BB28 E2B6 8177 3FD7 E15D
To claim this, I am signing this object:
//The global script scope | |
def ctx = context(scope: scriptScope()) | |
//What things can be on the script scope | |
contributor(ctx) { | |
method(name: 'pipeline', type: 'Object', params: [body: Closure]) | |
property(name: 'params', type: 'org.jenkinsci.plugins.workflow.cps.ParamsVariable') | |
property(name: 'env', type: 'org.jenkinsci.plugins.workflow.cps.EnvActionImpl.Binder') | |
property(name: 'currentBuild', type: 'org.jenkinsci.plugins.workflow.cps.RunWrapperBinder') | |
property(name: 'scm', type: 'org.jenkinsci.plugins.workflow.multibranch.SCMVar') |
$ContentPath = "$PSScriptRoot\Content\Levels".Replace("\", "/") | |
$process = Start-Process ` | |
-FilePath "C:\Program Files\Epic Games\UE_4.18\Engine\Binaries\Win64\UE4Editor-Cmd.exe" ` | |
-ArgumentList @( | |
"$PSScriptRoot\MinuteOfMayhem.uproject", | |
"-run=resavepackages", | |
"-buildtexturestreaming", | |
"-buildlighting", | |
"-MapsOnly", | |
"-ProjectOnly", |
# Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands) | |
gpg --gen-key | |
# maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null` | |
# check current keys: | |
gpg --list-secret-keys --keyid-format LONG | |
# See your gpg public key: | |
gpg --armor --export YOUR_KEY_ID | |
# YOUR_KEY_ID is the hash in front of `sec` in previous command. (for example sec 4096R/234FAA343232333 => key id is: 234FAA343232333) |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# |
I hereby claim:
To claim this, I am signing this object:
buildscript { | |
repositories { | |
maven { | |
url 'http://repo1.maven.org/maven2' | |
} | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.4' | |
} |
For example, StartOnMount=true will cause the job to start when anything is mounted even if other conditions, e.g. QueueDirectories, say the job should not run
The StartInterval timer begins ticking at the moment the plist is loaded. If something like QueueDirectories is preventing the job from
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: