Browse Source

Try to force-fix CI

tags/v1.0
falkTX 3 years ago
parent
commit
499375cb26
2 changed files with 5 additions and 5 deletions
  1. +4
    -4
      .github/workflows/build.yml
  2. +1
    -1
      plugins/Common/IldaeilUI.cpp

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

@@ -39,7 +39,7 @@ jobs:
LDFLAGS: -static-libgcc -static-libstdc++
run: |
make features
make -j $(nproc)
make -j $(nproc) HAVE_LIBMAGIC=false
- name: Set sha8
id: slug
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
@@ -76,7 +76,7 @@ jobs:
LDFLAGS: -static-libgcc -static-libstdc++
run: |
make features
make -j $(nproc)
make -j $(nproc) HAVE_LIBMAGIC=false
- name: Set sha8
id: slug
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
@@ -105,7 +105,7 @@ jobs:
PKG_CONFIG_PATH: /usr/lib/i386-linux-gnu/pkgconfig
run: |
make features
make -j $(nproc)
make -j $(nproc) HAVE_LIBMAGIC=false
- name: Set sha8
id: slug
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
@@ -157,7 +157,7 @@ jobs:
LDFLAGS: -arch x86_64 -arch arm64 -mmacosx-version-min=10.12
run: |
make features
make NOOPT=true -j $(sysctl -n hw.logicalcpu)
make NOOPT=true HAVE_SNDFILE=false -j $(sysctl -n hw.logicalcpu)
./dpf/utils/package-osx-bundles.sh
- name: Set sha8
id: slug


+ 1
- 1
plugins/Common/IldaeilUI.cpp View File

@@ -295,9 +295,9 @@ public:
return;

fPluginHostWindow.hide();

if (fDrawingState == kDrawingPluginGenericUI || fDrawingState == kDrawingPluginEmbedUI)
carla_show_custom_ui(fPlugin->fCarlaHostHandle, 0, false);

}

void createPluginGenericUI(const CarlaHostHandle handle, const CarlaPluginInfo* const info)


Loading…
Cancel
Save