mirror of
https://github.com/theryangeary/choose
synced 2024-11-26 04:40:19 +00:00
Update github workflows
This commit is contained in:
parent
3f147da84c
commit
e31a1f1c04
2 changed files with 37 additions and 8 deletions
33
.github/workflows/release.yml
vendored
33
.github/workflows/release.yml
vendored
|
@ -16,12 +16,20 @@ jobs:
|
|||
- name: Check style
|
||||
run: cargo fmt -- --check
|
||||
|
||||
- name: Build
|
||||
run: cargo build --verbose --release
|
||||
|
||||
- name: Run tests
|
||||
- name: Run unit tests
|
||||
run: cargo test --verbose
|
||||
|
||||
- name: Rust end-to-end test
|
||||
run: test/e2e_test.sh
|
||||
|
||||
- name: Build x86_64-unknown-linux-gnu
|
||||
run: cargo build --verbose --release --target x86_64-unknown-linux-gnu
|
||||
|
||||
- name: Build x86_64-unknown-linux-musl
|
||||
run: |
|
||||
rustup target add x86_64-unknown-linux-musl
|
||||
cargo build --verbose --release --target x86_64-unknown-linux-musl
|
||||
|
||||
- name: Create GitHub release
|
||||
id: create-release
|
||||
uses: actions/create-release@v1
|
||||
|
@ -35,14 +43,25 @@ jobs:
|
|||
prerelease: false
|
||||
|
||||
- name: Upload binary to GitHub release
|
||||
id: upload-release-asset
|
||||
id: upload-x86_64-unknown-linux-gnu-release-asset
|
||||
uses: actions/upload-release-asset@v1.0.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: target/release/choose
|
||||
asset_name: choose
|
||||
asset_path: target/x86_64-unknown-linux-gnu/release/choose
|
||||
asset_name: choose-x86_64-unknown-linux-gnu
|
||||
asset_content_type: application/raw
|
||||
|
||||
- name: Upload musl binary to GitHub release
|
||||
id: upload-x86_64-unknown-linux-musl-release-asset
|
||||
uses: actions/upload-release-asset@v1.0.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: target/x86_64-unknown-linux-musl/release/choose
|
||||
asset_name: choose-x86_64-unknown-linux-musl
|
||||
asset_content_type: application/raw
|
||||
|
||||
- name: Create crates.io release
|
||||
|
|
12
.github/workflows/rust.yml
vendored
12
.github/workflows/rust.yml
vendored
|
@ -16,9 +16,19 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Check style
|
||||
run: cargo fmt -- --check
|
||||
|
||||
# this will report success even if there are warnings, and should be manually checked for now
|
||||
- name: Lint
|
||||
run: cargo clippy
|
||||
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
|
||||
- name: Run unit tests
|
||||
run: cargo test --verbose
|
||||
|
||||
- name: Run end-to-end tests
|
||||
run: test/e2e_test.sh
|
||||
|
|
Loading…
Reference in a new issue