Skip to content

Instantly share code, notes, and snippets.

@bmpc
bmpc / test_rom.asm
Created April 11, 2021 10:10
Hello World - Amstrad ROM with RSX
;--------------------------------------
; Hello World - Amstrad ROM with RSX
;
; By Bruno Conde based on R.A.Waddilove's version (http://www.cantrell.org.uk/david/tech/cpc/CWTA-writing-ROMs-code.html)
;--------------------------------------
ORG &C000
;--------------------------------------
; Reserves 15 bytes for workspace
;--------------------------------------
; ROM Prefix
@bmpc
bmpc / Jenkinsfile
Last active March 16, 2020 15:05
[Xray Cloud] Robot Framework Jenkins pipeline
pipeline {
environment {
client_id = "XXXXXXXX"
client_secret = "XXXXXXXXX"
}
agent {
dockerfile {
args '--entrypoint=\'\''
}
}
@bmpc
bmpc / Jenkinsfile
Last active March 16, 2020 15:01
[Xray Server] Robot Framework Jenkins pipeline
pipeline {
environment {
xray_server = "https://xxxxx.com"
user = "********"
pwd = "********"
}
agent {
docker {
image 'robotframework/rfdocker'
args '--entrypoint=\'\''
@bmpc
bmpc / Jenkinsfile
Last active November 28, 2019 10:05
[Xray Cloud] Cucumber Jenkins pipeline
pipeline {
environment {
xray_server = "https://xray.cloud.xpand-it.com"
client_id = "XXXXXX"
client_secret = "XXXXX"
}
agent { docker { image 'ruby' } }
stages {
stage("Sync Features") {
steps {
[info] Loading project definition from /Users/bmpc/Projects/MyApp/project
[debug] Running task... Cancelable: false, check cycles: false
[debug]
[debug] Initial source changes:
[debug] removed:Set()
[debug] added: Set()
[debug] modified: Set()
[debug] Removed products: Set()
[debug] Modified external sources: Set()
[debug] Modified binary dependencies: Set()
// Include the Android plugin
androidDefaults
// Name of your app
name := "MyApp"
// Version of your app
version := "0.1"
// Version number of your app
@bmpc
bmpc / sbt_output
Last active August 29, 2015 13:56
[info] Loading project definition from /Users/bmpc/Projects/MyApp/project
[info] Set current project to MyApp (in build file:/Users/bmpc/Projects/MyApp/)
[success] Total time: 0 s, completed Feb 5, 2014 4:58:42 PM
[info] Updating {file:/Users/bmpc/Projects/MyApp/}default-26080e...
[info] Resolving org.scala-lang#scala-library;2.10.2 ...
[info] Resolving com.android.support#support-v4;19.0.1 ...
[info] Resolving com.novoda.imageloader#imageloader-core;1.5.6 ...