Browse Source

Skip msys2 CI builds that broke for no reason

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.0
falkTX 2 years ago
parent
commit
d725e9af6a
1 changed files with 30 additions and 30 deletions
  1. +30
    -30
      .github/workflows/build.yml

+ 30
- 30
.github/workflows/build.yml View File

@@ -24,37 +24,37 @@ jobs:
- name: make
run: make WITH_LTO=true -j $(sysctl -n hw.logicalcpu)

msys2-i686:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: mingw32
install: base-devel make mingw-w64-i686-toolchain mingw-w64-i686-fluidsynth mingw-w64-i686-liblo mingw-w64-i686-libsndfile mingw-w64-i686-pkg-config mingw-w64-i686-python-pyqt5
- name: make features
run: make features
- name: make
run: make WITH_LTO=true -j $(nproc)
#msys2-i686:
#runs-on: windows-latest
#defaults:
#run:
#shell: msys2 {0}
#steps:
#- uses: actions/checkout@v2
#- uses: msys2/setup-msys2@v2
#with:
#msystem: mingw32
#install: base-devel make mingw-w64-i686-toolchain mingw-w64-i686-fluidsynth mingw-w64-i686-liblo mingw-w64-i686-libsndfile mingw-w64-i686-pkg-config mingw-w64-i686-python-pyqt5
#- name: make features
#run: make features
#- name: make
#run: make WITH_LTO=true -j $(nproc)

msys2-x86_64:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
install: base-devel make mingw-w64-x86_64-toolchain mingw-w64-x86_64-fluidsynth mingw-w64-x86_64-liblo mingw-w64-x86_64-libsndfile mingw-w64-x86_64-pkg-config mingw-w64-x86_64-python-pyqt5
- name: make features
run: make features
- name: make
run: make WITH_LTO=true -j $(nproc)
#msys2-x86_64:
#runs-on: windows-latest
#defaults:
#run:
#shell: msys2 {0}
#steps:
#- uses: actions/checkout@v2
#- uses: msys2/setup-msys2@v2
#with:
#msystem: mingw64
#install: base-devel make mingw-w64-x86_64-toolchain mingw-w64-x86_64-fluidsynth mingw-w64-x86_64-liblo mingw-w64-x86_64-libsndfile mingw-w64-x86_64-pkg-config mingw-w64-x86_64-python-pyqt5
#- name: make features
#run: make features
#- name: make
#run: make WITH_LTO=true -j $(nproc)

ubuntu-18_04:
runs-on: ubuntu-18.04


Loading…
Cancel
Save