Skip to content

Instantly share code, notes, and snippets.

@airtonix
Last active December 27, 2016 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save airtonix/6e66d8b6f7598fe9da23a427d3616764 to your computer and use it in GitHub Desktop.
Save airtonix/6e66d8b6f7598fe9da23a427d3616764 to your computer and use it in GitHub Desktop.
resource-types:
- name: samba-resource
type: docker-image
source:
repository: airtonix/concourse-resource-samba
resources:
- name: source
type: git
source:
uri: {{git_uri}}
private_key: {{concourse_worker_private_key}}
- name: artifacts
type: samba-resource
source:
server: {{artifacts_server}}
share: {{artifacts_server_share}}
jobs:
- name: build
public: true
serial: true
plan:
- get: source
trigger: true
- task: build binary
config:
platform: windows
inputs:
- name: source
outputs:
- name: build
run:
path: powershell
dir: source
args: ["./build.ps1"]
- name: release
public: true
serial: true
- get: source
passed: [build]
- put: artifacts
inputs:
- name: build
params:
path: concourse-csharp-test-project
$ fly -t main workers
name containers platform tags team
/cattle/concourse 11 linux none none
jadakren 3 windows none none
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment