ci: Dedicated matrix-sdk-appservice pipeline
parent
14bc4eb7e0
commit
a2125adeee
|
@ -52,17 +52,17 @@ jobs:
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets -- -D warnings
|
args: --workspace --exclude matrix-sdk-appservice --all-targets -- -D warnings
|
||||||
|
|
||||||
- name: Clippy without default features
|
- name: Clippy without default features
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
# TODO: add `--all-targets` once all warnings in examples are resolved
|
# TODO: add `--all-targets` once all warnings in examples are resolved
|
||||||
args: --no-default-features --features native-tls -- -D warnings
|
args: --workspace --exclude matrix-sdk-appservice --no-default-features --features native-tls -- -D warnings
|
||||||
|
|
||||||
check-wasm:
|
check-wasm:
|
||||||
name: Check if WASM support compiles
|
name: linux / WASM
|
||||||
needs: [clippy]
|
needs: [clippy]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
@ -86,6 +86,58 @@ jobs:
|
||||||
cd matrix_sdk/examples/wasm_command_bot
|
cd matrix_sdk/examples/wasm_command_bot
|
||||||
cargo check --target wasm32-unknown-unknown
|
cargo check --target wasm32-unknown-unknown
|
||||||
|
|
||||||
|
test-appservice:
|
||||||
|
name: ${{ matrix.name }}
|
||||||
|
needs: [clippy]
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
name:
|
||||||
|
- linux / appservice / stable
|
||||||
|
- macOS / appservice / stable
|
||||||
|
- windows / appservice / stable-x86_64-msvc
|
||||||
|
|
||||||
|
include:
|
||||||
|
- name: linux / appservice / stable
|
||||||
|
|
||||||
|
- name: macOS / appservice / stable
|
||||||
|
os: macOS-latest
|
||||||
|
|
||||||
|
- name: windows / appservice / stable-x86_64-msvc
|
||||||
|
os: windows-latest
|
||||||
|
target: x86_64-pc-windows-msvc
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Install rust
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: ${{ matrix.rust || 'stable' }}
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
profile: minimal
|
||||||
|
override: true
|
||||||
|
|
||||||
|
- name: Clippy
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
args: --manifest-path matrix_sdk_appservice/Cargo.toml -- -D warnings
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: build
|
||||||
|
args: --manifest-path matrix_sdk_appservice/Cargo.toml
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: test
|
||||||
|
args: --manifest-path matrix_sdk_appservice/Cargo.toml
|
||||||
|
|
||||||
test-features:
|
test-features:
|
||||||
name: ${{ matrix.name }}
|
name: ${{ matrix.name }}
|
||||||
needs: [clippy]
|
needs: [clippy]
|
||||||
|
@ -103,7 +155,6 @@ jobs:
|
||||||
- linux / features-socks
|
- linux / features-socks
|
||||||
- linux / features-sso_login
|
- linux / features-sso_login
|
||||||
- linux / features-require_auth_for_profile_requests
|
- linux / features-require_auth_for_profile_requests
|
||||||
- linux / features-appservice
|
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- name: linux / features-no-encryption
|
- name: linux / features-no-encryption
|
||||||
|
@ -133,9 +184,6 @@ jobs:
|
||||||
- name: linux / features-sso_login
|
- name: linux / features-sso_login
|
||||||
cargo_args: --features sso_login
|
cargo_args: --features sso_login
|
||||||
|
|
||||||
- name: linux / features-appservice
|
|
||||||
cargo_args: --no-default-features --features "appservice, native-tls"
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
@ -202,8 +250,10 @@ jobs:
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
|
args: --workspace --exclude matrix-sdk-appservice
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
|
args: --workspace --exclude matrix-sdk-appservice
|
||||||
|
|
Loading…
Reference in New Issue