Skip to content

Commit

Permalink
ci: Add -DBUILD_RTCD=1 to x64 targets
Browse files Browse the repository at this point in the history
  • Loading branch information
werman committed May 18, 2024
1 parent 9c4e5c2 commit 64e6fca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/githubci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,23 @@ jobs:
name: "Windows MSVC",
os: windows-2019,
cc: "cl", cxx: "cl",
config_params: "",
build_params: "--config Release",
artifact_prefix: "win"
}
- {
name: "Ubuntu Latest GCC",
os: ubuntu-latest,
cc: "gcc", cxx: "g++",
config_params: "-DBUILD_RTCD=1",
build_params: "",
artifact_prefix: "linux"
}
- {
name: "macOS Latest Clang",
os: macos-latest,
cc: "clang", cxx: "clang++",
config_params: "-DBUILD_RTCD=1",
build_params: "",
artifact_prefix: "macos",
}
Expand Down Expand Up @@ -78,6 +81,7 @@ jobs:
-DBUILD_LV2_PLUGIN=${{env.full_build}}
-DBUILD_AU_PLUGIN=${{env.full_build}}
-DBUILD_AUV3_PLUGIN=${{env.full_build}}
${{matrix.config.config_params}}
- name: Build
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@ jobs:
name: "Windows MSVC",
os: windows-2019,
cc: "cl", cxx: "cl",
config_params: "",
build_params: "--parallel --config Release",
artifact_prefix: "win"
}
- {
name: "Ubuntu Latest GCC",
os: ubuntu-latest,
cc: "gcc", cxx: "g++",
config_params: "-DBUILD_RTCD=1",
# Build is not parallel because gcc seem to run out of memory
build_params: "",
artifact_prefix: "linux"
Expand All @@ -34,6 +36,7 @@ jobs:
name: "macOS Latest Clang",
os: macos-latest,
cc: "clang", cxx: "clang++",
config_params: "-DBUILD_RTCD=1",
build_params: "--parallel",
artifact_prefix: "macos",
}
Expand Down Expand Up @@ -63,6 +66,7 @@ jobs:
-DBUILD_LV2_PLUGIN=1
-DBUILD_AU_PLUGIN=1
-DBUILD_AUV3_PLUGIN=1
${{matrix.config.config_params}}
- name: Build
run: |
Expand Down

0 comments on commit 64e6fca

Please sign in to comment.