Cargo install in CI (#1576)

* run cargo install in CI
* also run cargo install in musl env
This commit is contained in:
extrawurst 2023-03-01 15:44:51 +01:00 committed by GitHub
parent 670677044f
commit 8f29cb2e81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,9 @@ jobs:
- name: Build Release - name: Build Release
run: make build-release run: make build-release
- name: Test Install
run: cargo install --path "."
- name: Binary Size (unix) - name: Binary Size (unix)
if: matrix.os != 'windows-latest' if: matrix.os != 'windows-latest'
run: | run: |
@ -119,6 +122,8 @@ jobs:
- name: Test - name: Test
run: | run: |
make test-linux-musl make test-linux-musl
- name: Test Install
run: cargo install --path "."
build-linux-arm: build-linux-arm:
runs-on: ubuntu-latest runs-on: ubuntu-latest