Fix CI script

next
Sayan 4 years ago committed by Sayan Nandan
parent 8a8c4450bf
commit d3e37cfa55
No known key found for this signature in database
GPG Key ID: C31EFD7DDA12AEE0

@ -42,7 +42,7 @@ jobs:
restore-keys: |
${{ matrix.build }}-cargo-registry-
# HACK(@ohsayan): The next line skips caching until it is fixed
if: runner.os != 'macOS' && !env.IS_MD_FILE
if: (runner.os != 'macOS') && !${{env.IS_MD_FILE}}
- name: Cache Cargo index
uses: actions/cache@v1
@ -52,7 +52,7 @@ jobs:
restore-keys: |
${{ matrix.build }}-cargo-index-
# HACK(@ohsayan): The next line skips caching until it is fixed
if: runner.os != 'macOS' && !env.IS_MD_FILE
if: (runner.os != 'macOS') && !${{env.IS_MD_FILE}}
- name: Cache Cargo build
uses: actions/cache@v1
@ -62,16 +62,16 @@ jobs:
restore-keys: |
${{ matrix.build }}-target-
# HACK(@ohsayan): The next line skips caching until it is fixed
if: runner.os != 'macOS' && !env.IS_MD_FILE
if: (runner.os != 'macOS') && !${{env.IS_MD_FILE}}
- name: Install Rust
run: |
rustup update ${{ matrix.rust }} --no-self-update
rustup default ${{ matrix.rust }}
if: "!env.IS_MD_FILE"
if: "!${{env.IS_MD_FILE}}"
- name: Run Tests
run: cargo test --verbose -- --test-threads=1
env:
RUST_BACKTRACE: 1
if: "!env.IS_MD_FILE"
if: "!${{env.IS_MD_FILE}}"

@ -35,7 +35,7 @@ And [many more](https://terrabasedb.github.io/docs/List-Of-Actions)
## Clients 🔌
We're officially working on a [Python Driver](https://github.com/terrabasedb/python-driver) and we plan to support more languages along the way 🎉! You're free to write your own clients - all you need to do is implement the simple and performant [Terrapipe protocol spec](https://terrabasedb.github.io/docs/Protocols/terrapipe/).
Until we release an official driver, you'll have to write your own clients — all you need to do is implement the simple and performant [Terrapipe protocol spec](https://terrabasedb.github.io/docs/Protocols/terrapipe/).
## Community 👐

Loading…
Cancel
Save