mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Use develop in CI when possible
This commit is contained in:
8
.github/workflows/testing.yml
vendored
8
.github/workflows/testing.yml
vendored
@@ -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=
|
||||||
|
|||||||
Reference in New Issue
Block a user