Skip to content

Instantly share code, notes, and snippets.

View robpearson's full-sized avatar

Rob Pearson robpearson

View GitHub Profile
@robpearson
robpearson / Jenkinsfile
Created January 15, 2020 00:35
Sample Octopus Jenkins pipeline
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'dotnet publish RandomQuotes.sln --output published-app --configuration Release'
}
}
stage('Run Tests') {
steps {
@robpearson
robpearson / dbchangelog.xml
Created November 17, 2020 00:32
Deploying to Oracle with Octopus Deploy and Liquibase
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-3.9.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.9.xsd">
<changeSet author="Shawn.Sesna (generated)" id="1599867429412-1">
<createTable tableName="FILM_CATEGORY" tablespace="USERS">
<column name="FILM_ID" type="NUMBER(*, 0)">
<constraints nullable="false" primaryKey="true" primaryKeyName="PK_FILM_CATEGORY"/>
</column>
<column name="CATEGORY_ID" type="NUMBER(*, 0)">
<constrai