We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7791b35 commit 10a1759Copy full SHA for 10a1759
1 file changed
.circleci/config.yml
@@ -7,14 +7,15 @@ jobs:
7
steps:
8
- checkout
9
- run:
10
- name: Install docker
+ name: Install Typesense
11
command: |
12
- curl -fsSL https://get.docker.com -o get-docker.sh
13
- sh get-docker.sh
+ curl --output ts.tar.gz https://dl.typesense.org/releases/0.22.2/typesense-server-0.22.2-darwin-amd64.tar.gz
+ tar -xzf ts.tar.gz
14
15
- name: Docker hello-world
+ name: Run Typesense
16
+ background: true
17
- docker run hello-world
18
+ ./typesense-server --api-key=xyz --data-dir=/tmp
19
20
# Build and Test the Typesense Package
21
name: Run Tests
0 commit comments