Skip to content

Commit

Permalink
ci: try to compile on windows with older LDC version
Browse files Browse the repository at this point in the history
  • Loading branch information
gaheldev committed May 20, 2024
1 parent a214817 commit 7046174
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ jobs:
matrix:
os:
- windows-latest
- ubuntu-20.04 # for glibc compatibility with systems > 20.04
- macOS-latest
# - ubuntu-20.04 # for glibc compatibility with systems > 20.04
# - macOS-latest
arch:
- 'x86_64'
compiler:
- ldc-latest
# - ldc-latest
- ldc-1.37.0
steps:
# Checkout
- name: Checkout master branch
Expand Down Expand Up @@ -76,13 +77,10 @@ jobs:
run: |
if ("${{ matrix.os }}" -like 'windows*') {
$Plugins = "-c VST3"
$BuildPrefix = "Windows-64b"
} elseif ("${{ matrix.os }}" -like 'macOS*') {
$Plugins = "-c VST3"
$BuildPrefix = "macos-64b"
} elseif ("${{ matrix.os }}" -like 'ubuntu*') {
$Plugins = "-c VST3 -c LV2"
$BuildPrefix = "Linux-64b"
}
$esc = '--%'
${{ env.DPlugBuild }} -a ${{ matrix.arch }} $esc $Plugins
Expand Down

0 comments on commit 7046174

Please sign in to comment.