Use develop in CI when possible

This commit is contained in:
ISSOtm
2020-02-14 02:30:24 +01:00
parent 7471f46a07
commit e078c1e793

View File

@@ -5,8 +5,12 @@ jobs:
unix-testing: unix-testing:
strategy: strategy:
matrix: matrix:
os: [ubuntu-16.04, ubuntu-18.04, macos-10.15] os: [ubuntu-18.04, ubuntu-16.04, macos-10.15]
cc: [gcc, clang] cc: [gcc, clang]
include:
- os: ubuntu-18.04
cc: gcc
target: develop
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -16,7 +20,7 @@ jobs:
./.github/actions/install_deps.sh ${{ matrix.os }} ./.github/actions/install_deps.sh ${{ matrix.os }}
- name: Build - name: Build
run: | run: |
make -j Q= CC=${{ matrix.cc }} make ${{ matrix.target }} -j Q= CC=${{ matrix.cc }}
- name: Install - name: Install
run: | run: |
sudo make install -j Q= sudo make install -j Q=