Skip to content

Commit

Permalink
ci: add quick-start test for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
4eUeP committed Oct 27, 2023
1 parent 9f0cc05 commit df8d35f
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,25 @@ on:

jobs:
quick-start:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
name: quick-start on ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

- uses: docker-practice/actions-setup-docker@master
if: runner.os == 'macOS'
timeout-minutes: 12

- run: |
set -x
docker version
- name: pull images
run: docker-compose -f assets/quick-start-lite.yaml pull
run: docker compose -f assets/quick-start-lite.yaml pull

- name: quick start a hstream cluster
run: ./tests/start_cluster.sh
Expand Down

0 comments on commit df8d35f

Please sign in to comment.