Skip to content

Commit

Permalink
Merge branch 'release/0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Mar 5, 2020
2 parents d32fbf6 + 552a627 commit e9851db
Show file tree
Hide file tree
Showing 9 changed files with 830 additions and 1,104 deletions.
28 changes: 26 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,38 @@ jobs:
- run:
command: docker-compose build

docker_compose_local_build:
docker_compose_local_working_test:
machine:
# (base: https://circleci.com/docs/2.0/configuration-reference/#machine)
image: ubuntu-1604:201903-01
steps:
- checkout
- run:
name: Build
command: docker-compose -f docker-compose.local.yml build
- run:
name: Up
command: docker-compose -f docker-compose.local.yml up -d
- run:
name: Web frontend GET
command: curl http://localhost:9080/
- run:
name: SVG card
command: |
set -xeu
time curl http://localhost:9080/repos/nwtgck/piping-server.svg
# Cache should be enabled
time curl http://localhost:9080/repos/nwtgck/piping-server.svg
- run:
name: PNG card
command: |
set -xeu
time curl -sS http://localhost:9080/repos/nwtgck/piping-server.png | file -
# Cache should be enabled
time curl -sS http://localhost:9080/repos/nwtgck/piping-server.png | file -
- run:
name: Server log
command: docker-compose -f docker-compose.local.yml logs

workflows:
version: 2
Expand All @@ -58,4 +82,4 @@ workflows:
- backend_build
- frontend_build
- docker_compose_build
- docker_compose_local_build
- docker_compose_local_working_test
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [0.2.1] - 2020-03-05
### Changed
* Update dependencies

## Fixed
* Fix GitHub API request

## [0.2.0] - 2020-02-09
### Changed
* Update dependencies
Expand All @@ -14,5 +21,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
### Added
* Initial release

[Unreleased]: https://github.com/nwtgck/gh-card/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/nwtgck/gh-card/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/nwtgck/gh-card/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/nwtgck/gh-card/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
Loading

2 comments on commit e9851db

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.