workflows:
parallel-robot-tests:
jobs:
- build-artifacts:
- test-suit-1:
This file contains 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
# npm using https for git | |
git config --global url."https://github.com/".insteadOf [email protected]: | |
git config --global url."https://".insteadOf git:// | |
# npm using git for https | |
git config --global url."[email protected]:".insteadOf https://github.com/ | |
git config --global url."git://".insteadOf https:// |
This file contains 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
eterm-color|Emacs term.el terminal emulator term-protocol-version 0.96, | |
# | |
# The code here is forced by the interface, and is not subject to | |
# copyright, constituting the only possible expression of the algorithm | |
# in this format. | |
# | |
# When updating this file, etc/e/eterm-color should be regenerated by | |
# running "make e/eterm-color" in the etc directory. | |
# Any change to this file should be done at the same time with a | |
# corresponding change to the TERMCAP environment variable in term.el. |
This file contains 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
import sbt._ | |
import sbt.Keys._ | |
import com.typesafe.sbt.SbtStartScript.{startScriptForClassesSettings => startScript} | |
import com.typesafe.sbt.SbtStartScript.StartScriptKeys._ | |
object AkkaProjectInScalaBuild extends Build { | |
lazy val akkaProjectInScala = Project( | |
id = "akka-project-in-scala", | |
base = file("."), |