Using clippy action
Removed build-examples job Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
This commit is contained in:
parent
0f9c9bd08f
commit
3770f99e77
|
@ -22,8 +22,8 @@ jobs:
|
|||
with:
|
||||
command: fmt
|
||||
args: --all -- --check
|
||||
- uses: actions-rs/cargo@v1
|
||||
- uses: actions-rs/clippy-check@v1
|
||||
name: "Cargo clippy"
|
||||
with:
|
||||
command: clippy
|
||||
args: -- -D warnings
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
args: --all-features
|
||||
|
|
|
@ -24,10 +24,14 @@ jobs:
|
|||
- wasm32-unknown-unknown
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
# Setup musl if needed
|
||||
- run: sudo apt-get update
|
||||
if: matrix.target == 'x86_64-unknown-linux-musl'
|
||||
- run: sudo apt-get install -y musl musl-dev musl-tools cmake
|
||||
if: matrix.target == 'x86_64-unknown-linux-musl'
|
||||
|
||||
# Caching stuff
|
||||
- name: Cache cargo registry
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
|
@ -51,12 +55,14 @@ jobs:
|
|||
|
||||
# If glibc, compile and test all
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Build"
|
||||
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
||||
with:
|
||||
command: build
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
args: --target ${{ matrix.target }} --workspace
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Test"
|
||||
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
||||
with:
|
||||
command: test
|
||||
|
@ -65,6 +71,7 @@ jobs:
|
|||
|
||||
# If musl, compile and test all
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Build"
|
||||
if: matrix.target == 'x86_64-unknown-linux-musl'
|
||||
with:
|
||||
command: build
|
||||
|
@ -74,6 +81,7 @@ jobs:
|
|||
CC: musl-gcc
|
||||
CXX: g++
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Test"
|
||||
if: matrix.target == 'x86_64-unknown-linux-musl'
|
||||
with:
|
||||
command: test
|
||||
|
@ -85,56 +93,34 @@ jobs:
|
|||
|
||||
# If wasm, then we test only the main module and cloudevents-sdk-reqwest
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Build"
|
||||
if: matrix.target == 'wasm32-unknown-unknown'
|
||||
with:
|
||||
command: build
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
args: --target wasm32-unknown-unknown --package cloudevents-sdk --package cloudevents-sdk-reqwest
|
||||
|
||||
build-examples:
|
||||
name: Examples ${{ matrix.toolchain }} / ${{ matrix.target }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target:
|
||||
- x86_64-unknown-linux-gnu
|
||||
- wasm32-unknown-unknown
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache cargo registry
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/registry
|
||||
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
||||
- name: Cache cargo index
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/git
|
||||
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
||||
- name: Cache cargo build
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: target
|
||||
key: ${{ runner.os }}-cargo-build-target-${{ matrix.toolchain }}-stable-${{ hashFiles('**/Cargo.lock') }}
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
target: ${{ matrix.target }}
|
||||
override: true
|
||||
# Build examples
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Build reqwest-wasm-example"
|
||||
if: matrix.target == 'wasm32-unknown-unknown' && matrix.toolchain == 'stable'
|
||||
with:
|
||||
command: build
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
args: --target ${{ matrix.target }} --manifest-path ${GITHUB_WORKSPACE}/example-projects/reqwest-wasm-example/Cargo.toml
|
||||
|
||||
- name: "Build reqwest-wasm-example"
|
||||
if: matrix.target == 'wasm32-unknown-unknown'
|
||||
working-directory: ${GITHUB_WORKSPACE}/example-projects/reqwest-wasm-example
|
||||
run: cargo build --target ${{ matrix.target }}
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Build rdkafka-example"
|
||||
if: matrix.target == 'x86_64-unknown-linux-gnu' && matrix.toolchain == 'stable'
|
||||
with:
|
||||
command: build
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
args: --target ${{ matrix.target }} --manifest-path ${GITHUB_WORKSPACE}/example-projects/rdkafka-example/Cargo.toml
|
||||
|
||||
- name: "Build rdkafka-example"
|
||||
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
||||
working-directory: ${GITHUB_WORKSPACE}/example-projects/rdkafka-example
|
||||
run: cargo build --target ${{ matrix.target }}
|
||||
|
||||
- name: "Build actix-web-example"
|
||||
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
||||
working-directory: ${GITHUB_WORKSPACE}/example-projects/actix-web-example
|
||||
run: cargo build --target ${{ matrix.target }}
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: "Build actix-web-example"
|
||||
if: matrix.target == 'x86_64-unknown-linux-gnu' && matrix.toolchain == 'stable'
|
||||
with:
|
||||
command: build
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
args: --target ${{ matrix.target }} --manifest-path ${GITHUB_WORKSPACE}/example-projects/actix-web-example/Cargo.toml
|
Loading…
Reference in New Issue