Skip to content

Commit 684f412

Browse files
committed
Update CI
1 parent 31367ed commit 684f412

File tree

2 files changed

+29
-23
lines changed

2 files changed

+29
-23
lines changed

.circleci/config.yml

Lines changed: 28 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,10 @@ version: 2.1
33
#orbs:
44
# codecov: codecov/codecov@1.0.4
55

6-
jobs:
7-
test:
8-
docker:
9-
- image: rust:1
10-
steps:
11-
- checkout
12-
# - run:
13-
# name: Install CMAKE
14-
# command: 'apt-get update && apt-get install -y cmake'
15-
# - restore_cache:
16-
# keys:
17-
# key: v4-cmake-{{ arch }}-3.14.1
18-
# - run:
19-
# name: Fetch newer CMAKE ...
20-
# command: 'wget https://github.com/Kitware/CMake/releases/download/v3.14.1/cmake-3.14.1.tar.gz && tar zxf cmake-3.14.1.tar.gz && cd cmake-3.14.1 && cmake . && make'
21-
# - save_cache:
22-
# paths:
23-
# - cmake-3.14.1
24-
# key: v4-cmake-{{ arch }}-3.14.1
25-
# - run:
26-
# name: install newer CMAKE ...
27-
# command: 'cd cmake-3.14.1 && make install'
6+
commands:
7+
run_tests:
8+
description: "A very simple command for demonstration purposes"
9+
steps:
2810
- run:
2911
name: Version information
3012
command: rustc --version; cargo --version; rustup --version
@@ -47,6 +29,30 @@ jobs:
4729
- run:
4830
name: Run all tests
4931
command: cargo test --all
32+
33+
jobs:
34+
test:
35+
docker:
36+
- image: rust:1
37+
steps:
38+
- checkout
39+
# - run:
40+
# name: Install CMAKE
41+
# command: 'apt-get update && apt-get install -y cmake'
42+
# - restore_cache:
43+
# keys:
44+
# key: v4-cmake-{{ arch }}-3.14.1
45+
# - run:
46+
# name: Fetch newer CMAKE ...
47+
# command: 'wget https://github.com/Kitware/CMake/releases/download/v3.14.1/cmake-3.14.1.tar.gz && tar zxf cmake-3.14.1.tar.gz && cd cmake-3.14.1 && cmake . && make'
48+
# - save_cache:
49+
# paths:
50+
# - cmake-3.14.1
51+
# key: v4-cmake-{{ arch }}-3.14.1
52+
# - run:
53+
# name: install newer CMAKE ...
54+
# command: 'cd cmake-3.14.1 && make install'
55+
- run_tests: {}
5056
#- run:
5157
# name: Install nightly
5258
# command: rustup install nightly

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simd-json"
3-
version = "0.1.15"
3+
version = "0.1.16"
44
authors = ["Heinz N. Gies <heinz@licenser.net>"]
55
edition = "2018"
66
exclude = [ "data/*" ]

0 commit comments

Comments
 (0)