Skip to content

Commit

Permalink
Remove cmake (#17)
Browse files Browse the repository at this point in the history
* Strip cmake
* Update zmq to 4.3.4 to solve zeromq/libzmq/issues/3586
* Switch to github actions for all CI
* Add libsodium test
* Remove perftools
* Remove static feature

Co-authored-by: Marijn Suijten <marijn@traverseresearch.nl>
  • Loading branch information
Jasper-Bekkers and MarijnS95 authored Feb 14, 2022
1 parent fb822b8 commit 649b49e
Show file tree
Hide file tree
Showing 10 changed files with 343 additions and 232 deletions.
33 changes: 0 additions & 33 deletions .appveyor.yml

This file was deleted.

74 changes: 74 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
on: [push, pull_request]

name: Continuous integration

jobs:
check:
name: Check and Lint
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/cache@v2
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-check-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt, clippy
- name: Cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --all-targets
- name: Cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-targets -- -D warnings
test:
name: Run unit tests
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable]
tests: ["", "--release", "--features=libsodium"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/cache@v2
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
- name: Cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path testcrate/Cargo.toml ${{ matrix.tests }}
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "vendor"]
path = vendor
url = https://github.com/zeromq/libzmq
branch = v4.3.2
branch = v4.3.4
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ keywords = ["libzmq", "zmq", "zeromq"]
members = ["testcrate"]

[dependencies]
cmake = "0.1"
cc = { version = "1", features = ["parallel"] }
Loading

0 comments on commit 649b49e

Please sign in to comment.