Skip to content

Commit

Permalink
Add resource icons to Concourse pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dpb587 committed Apr 22, 2019
1 parent bf4e12d commit 9fce434
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
13 changes: 13 additions & 0 deletions ci/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,22 +165,26 @@ jobs:
resources:
- name: repo
type: git
icon: code-tags
source: &repo
uri: [email protected]:dpb587/ssoca.git
branch: master
private_key: ((git_private_key))
- name: repo-dev-artifacts
type: metalink-repository
icon: file-cloud
source:
<< : *release_artifacts
uri: git+ssh://[email protected]:dpb587/ssoca.git//ssoca-dev#artifacts
- name: repo-final-artifacts
type: metalink-repository
icon: file-cloud
source:
<< : *release_artifacts
uri: git+ssh://[email protected]:dpb587/ssoca.git//ssoca-final#artifacts
- name: "repo-ci-images"
type: "git"
icon: code-tags
source:
uri: [email protected]:dpb587/ssoca.git
branch: master
Expand All @@ -190,6 +194,7 @@ resources:
- "ci/images/**/*"
- name: "repo-docs"
type: "git"
icon: code-tags
source:
uri: [email protected]:dpb587/ssoca.git
branch: master
Expand All @@ -200,49 +205,57 @@ resources:
- "docs/**/*"
- name: "hugo-site"
type: "git"
icon: palette-swatch
source:
uri: https://github.com/dpb587/hugo-balmy-site.git
- name: "repo-artifacts"
type: "git"
icon: file-cloud
source:
uri: [email protected]:dpb587/ssoca.git
branch: artifacts
private_key: ((git_private_key))
- name: "repo-gh-pages"
type: "git"
icon: file-eye
source:
uri: [email protected]:dpb587/ssoca.git
branch: gh-pages
private_key: ((git_private_key))
- name: github-release
type: github-release
icon: github-circle
source:
access_token: ((repo_github_token))
repository: ssoca
user: dpb587
- name: unit-tests-github-status
type: github-status
icon: adjust
source:
repository: dpb587/ssoca
branch: master
access_token: ((repo_github_token))
context: unit-tests
- name: "ci-build-docker-image"
type: "docker-image"
icon: docker
source:
repository: dpb587/ssoca
username: ((docker_username))
password: ((docker_password))
tag: ci-build
- name: "version"
type: "semver"
icon: label
source:
<<: *repo
driver: git
branch: ci-state
file: version/master
- name: golang
type: dynamic-metalink
icon: package-down
source:
version_check: |
curl -s https://golang.org/dl/?mode=json | jq -r '.[].version[2:]'
Expand Down
7 changes: 4 additions & 3 deletions docs/releases/v0.16.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ weight: 16000

**Features**

* Add `/usr/sbin` to fallback search path for `openvpn` ([#11](https://github.com/dpb587/ssoca/pull/11))
* Use password authentication for `openvpn` management interface ([#14](https://github.com/dpb587/ssoca/issues/14))
* Add `/usr/sbin` to fallback search path for `openvpn` ([#11](https://github.com/dpb587/ssoca/pull/11)).
* Use password authentication for `openvpn` management interface ([#14](https://github.com/dpb587/ssoca/issues/14)).
* Improve `openvpn` reconnection behavior to request a new certificate upon rapid connection failures.

**Development**

* Update to go/1.12.4
* Update to go/1.12.4.
* Improve the [documentation site](https://dpb587.github.io/ssoca) theme.
* Add [resource icons](https://concourse-ci.org/resources.html#resource-icon) to Concourse pipeline.

0 comments on commit 9fce434

Please sign in to comment.