File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 19
19
steps :
20
20
- uses : actions/checkout@v4
21
21
22
+ # Set up Python 3.10 or later
23
+ - name : Set up Python 3.10 (Windows)
24
+ if : matrix.os == 'windows-latest'
25
+ uses : actions/setup-python@v2
26
+ with :
27
+ python-version : ' 3.10'
28
+
22
29
# Install C++ Compiler & Build Tools
23
30
- name : Set up C++ environment (Ubuntu)
24
31
if : matrix.os == 'ubuntu-latest'
77
84
run : make build
78
85
79
86
# Install the Project with desktop shortcut
80
- - name : Install project
87
+ - name : Install project (Mac/Windows)
88
+ if : matrix.os != 'ubuntu-latest'
81
89
run : echo "y" | make install
90
+
91
+ # Install the Project without desktop shortcut (Linux)
92
+ # This is a work around for Linux shortcut bug
93
+ - name : Install project (Linux)
94
+ if : matrix.os == 'ubuntu-latest'
95
+ run : echo "n" | make install
You can’t perform that action at this time.
0 commit comments