-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e12ffb
commit 8d4f1ac
Showing
4 changed files
with
22 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
name: Build Khiops | ||
description: Action to execute CMake configure/build presets | ||
description: Executes CMake configure/build presets | ||
inputs: | ||
preset-name: | ||
description: The CMake preset name | ||
|
@@ -9,16 +9,14 @@ inputs: | |
description: "List of overriding flags for the preset defaults (ex: '-DUSE_MPI=OFF\ | ||
\ -DBUILD_JARS=ON')" | ||
targets: | ||
description: "List of targets to be built (ex: 'MODL norm_test')" | ||
description: "List of targets (ex: 'MODL norm_test')" | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Setup MPI | ||
uses: mpi4py/setup-mpi@v1 | ||
- name: Setup Ninja | ||
uses: ashutoshvarma/[email protected] | ||
- name: Load Visual C++ Environment Variables (Windows only) | ||
if: ${{ runner.os == 'Windows' }} | ||
if: runner.os == 'Windows' | ||
shell: cmd | ||
run: | | ||
call "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Auxiliary\\Build\\vcvars64.bat" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters