Github Actions: Try macOS again

Once more into the breach!

See #7447.
This commit is contained in:
Fabian Homborg 2020-11-02 21:04:36 +01:00
parent a2ff32d904
commit 811ba586ea

View file

@ -26,25 +26,25 @@ jobs:
make
- name: make test
run: |
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install deps
run: |
brew install python3
sudo pip3 install pexpect
- name: cmake
run: |
mkdir build && cd build
cmake -DWITH_GETTEXT=NO ..
- name: make
run: |
make
- name: make test
run: |
make test
# macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v2
# - name: Install deps
# run: |
# brew install python3
# sudo pip3 install pexpect
# - name: cmake
# run: |
# mkdir build && cd build
# cmake -DWITH_GETTEXT=NO ..
# - name: make
# run: |
# make
# - name: make test
# run: |
# make test