File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,15 @@ jobs:
24
24
25
25
steps :
26
26
- uses : actions/checkout@v4
27
- - run : mkdir build
28
27
29
28
- name : Install micromamba
30
29
uses : mamba-org/setup-micromamba@v1
31
30
with :
32
31
environment-file : environment-dev.yml
33
32
33
+ - name : Make build directory
34
+ run : mkdir build
35
+
34
36
- name : Install luajit
35
37
shell : bash -l {0}
36
38
run : micromamba install luajit -c conda-forge -y
40
42
shell : bash -l {0}
41
43
run : |
42
44
cmake .. \
43
- -DXLUA_WITH_XWIDGETS=ON\
44
- -DXLUA_WITH_XCANVAS=ON\
45
+ -DXLUA_WITH_XWIDGETS=ON \
46
+ -DXLUA_WITH_XCANVAS=ON \
45
47
-DXEUS_LUA_USE_LUAJIT=${{matrix.luajit}} \
46
48
-DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
47
49
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
@@ -69,21 +71,27 @@ jobs:
69
71
strategy :
70
72
fail-fast : false
71
73
matrix :
72
- os : [ windows-latest]
74
+ os : [ windows-latest ]
73
75
74
76
steps :
75
77
- uses : actions/checkout@v4
76
- - run : mkdir build
77
78
78
79
- name : Install micromamba
79
80
uses : mamba-org/setup-micromamba@v1
80
81
with :
81
82
init-shell : powershell
82
83
environment-file : environment-dev.yml
83
84
85
+ - name : Make build directory
86
+ run : mkdir build
87
+
84
88
- name : Configure cmake
85
89
shell : powershell
86
- run : cmake .. -DCMAKE_BUILD_TYPE=Release -DDEPENDENCY_SEARCH_PREFIX="%CONDA_PREFIX%\Library" -DCMAKE_PREFIX_PATH="%CONDA_PREFIX%\Library"
90
+ run : |
91
+ cmake .. `
92
+ -DCMAKE_BUILD_TYPE=Release `
93
+ -DDEPENDENCY_SEARCH_PREFIX="%CONDA_PREFIX%\Library" `
94
+ -DCMAKE_PREFIX_PATH="%CONDA_PREFIX%\Library"
87
95
working-directory : build
88
96
89
97
- name : Build
You can’t perform that action at this time.
0 commit comments