From 89622eb6f3276955f695a049b98574ee8012f344 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Thu, 18 Jun 2020 17:20:27 +0200 Subject: [PATCH] Github actions: Try macos again This might possibly use pexpect --- .github/workflows/main.yml | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a0cc4b26..8aa02611d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,22 +28,23 @@ jobs: run: | make test - # macos: + macos: - # runs-on: macos-latest + runs-on: macos-latest - # steps: - # - uses: actions/checkout@v2 - # - name: Install deps - # run: | - # brew install pcre2 - # - name: cmake - # run: | - # mkdir build && cd build - # cmake .. - # - name: make - # run: | - # make - # - name: make test - # run: | - # make test + steps: + - uses: actions/checkout@v2 + - name: Install deps + run: | + brew install pcre2 python3 + sudo pip3 install pexpect + - name: cmake + run: | + mkdir build && cd build + cmake .. + - name: make + run: | + make + - name: make test + run: | + make test