Skip to content

Commit

Permalink
Merge branch 'release/1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
coord-e committed Apr 13, 2020
2 parents b8778ca + abbeab9 commit bec42f2
Show file tree
Hide file tree
Showing 12 changed files with 1,356 additions and 36 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ jobs:
- uses: actions/checkout@master
- run: docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} -p ${{ secrets.DOCKER_HUB_PASSWORD }}
- run: PUSH_IMAGES=true ./dockerfile/build.sh
test_examples:
name: Test examples
runs-on: ubuntu-latest
needs: build_docker_images
steps:
- uses: actions/checkout@master
- name: Build examples
run: |
for example in ./example/*; do
docker build "$example"
done
release:
name: Release
runs-on: ubuntu-18.04
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,6 @@ jobs:
with:
command: test
args: --release --all-features --target=${{ matrix.target }}
test_examples:
name: Test examples
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: |
for example in ./example/*; do
docker build "$example"
done
fmt:
name: Rustfmt
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## [1.0.2] - 2020-04-14

- Fixed `--compress` when the executable is symlinked.
- Added many test cases.

## [1.0.1] - 2020-04-11

- Fixed a problem on CI.
Expand Down
Loading

0 comments on commit bec42f2

Please sign in to comment.