diff --git a/.circleci/config.yml b/.circleci/config.yml index b1d76a212f9..9f186b43480 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,6 +12,14 @@ run_install_dependencies: &run_install_dependencies version: 2 jobs: + changelog: + docker: + - image: docker:stable-git + steps: + - checkout + - run: + command: ! git diff --exit-code CHANGELOG.md + # Job used for testing lint: docker: @@ -351,6 +359,7 @@ workflows: version: 2 main: jobs: + - changelog - lint - test: filters: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b210c550f4..6b2c106e5dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,4 +6,5 @@ Blocks of changes will separated by version increments. ## **[Unreleased]** - [#351](https://github.com/wasmerio/wasmer/pull/351) Add hidden option to specify wasm program name (can be used to improve error messages) +- [#350](https://github.com/wasmerio/wasmer/pull/350) Enforce that CHANGELOG.md is updated through CI. - [#349](https://github.com/wasmerio/wasmer/pull/349) Add [CHANGELOG.md](https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md).