Skip to content

Commit

Permalink
GitHub Action use Bash on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Middleditch committed Aug 23, 2019
1 parent 3768224 commit a325541
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -19,19 +19,24 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: install dependencies
shell: bash
run: sudo apt-get install -y doxygen
if: job.container.image == 'ubuntu-latest'
- name: configure
shell: bash
run: mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX:PATH=~/.local -DCMAKE_BUILD_TYPE:STRING=${CONFIG} -DLIBTELNET_STRICT:BOOL=${STRICT}
env:
CONFIG: ${{ matrix.config }}
STRICT: NO
- name: make
shell: bash
run: cd build && cmake --build .
- name: test
shell: bash
run: cd build/test && ctest -C ${CONFIG} .
env:
CONFIG: ${{ matrix.config }}
- name: dist
shell: bash
run: cd build && cpack -G TGZ
if: false

0 comments on commit a325541

Please sign in to comment.