Skip to content

Commit

Permalink
Adding a couple of more envs.
Browse files Browse the repository at this point in the history
  • Loading branch information
innala committed Nov 10, 2023
1 parent 70cf5a9 commit 82ccdba
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
29 changes: 28 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,34 @@ env:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
TARGET: x86_64-apple-darwin
COMPILER: clang
LINKER: clang

- os: macos-latest
TARGET: arm-apple-darwin
COMPILER: clang
LINKER: clang

- os: ubuntu-latest
TARGET: armv7-unknown-linux-musleabihf
COMPILER: arm-linux-gnueabihf-gcc-5
LINKER: gcc-5-arm-linux-gnueabihf

- os: ubuntu-latest
TARGET: x86_64-unknown-linux-musl
COMPILER: gcc
LINKER: gcc

- os: ubuntu-latest
TARGET: x86_64-unknown-linux
COMPILER: clang
LINKER: clang

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ heck = "0.5.0-rc.1"

[dev-dependencies]
mockito = "1"
tokio = {version = "1"}
tokio = "1"

[build-dependencies]
prost-build = "0.12.1"
Expand Down
1 change: 0 additions & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,5 +262,4 @@ mod tests {
);
}


}

0 comments on commit 82ccdba

Please sign in to comment.