File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,10 @@ jobs:
114
114
fail-fast : false
115
115
matrix :
116
116
runs-on : [ubuntu-latest, macos-latest, windows-latest]
117
+ installer : [CEdev]
118
+ include :
119
+ - runs-on : windows-latest
120
+ installer : installer
117
121
runs-on : ${{matrix.runs-on}}
118
122
steps :
119
123
- name : Bootstrap Test Environment
@@ -129,8 +133,12 @@ jobs:
129
133
- name : Download CEdev
130
134
uses : actions/download-artifact@v2
131
135
with :
132
- name : CEdev-${{runner.os}}
133
- path : CEdev
136
+ name : ${{matrix.installer}}-${{runner.os}}
137
+ path : ${{env.CEDEV}}
138
+ - name : Install CEdev
139
+ if : matrix.installer == 'installer'
140
+ run : ${{env.CEDEV}}/CEDev${{env.EXE}} /DIR=${{env.CEDEV}} /VERYSILENT /SUPPRESSMSGBOXES /NORESTART
141
+
134
142
- name : Download Libraries
135
143
uses : actions/download-artifact@v2
136
144
with :
@@ -139,7 +147,6 @@ jobs:
139
147
- name : Make Binaries Executable
140
148
if : runner.os != 'Windows'
141
149
run : chmod +x ${{env.CEDEV}}/bin/*
142
-
143
150
- name : Build Examples
144
151
run : make -j4 -C ${{env.CEDEV}}/examples V=1
145
152
@@ -149,7 +156,6 @@ jobs:
149
156
repository : CE-Programming/CEmu
150
157
ref : latest-stable
151
158
path : CEmu
152
-
153
159
- name : Build CEmu
154
160
run : make -j4 -C CEmu/core
155
161
- name : Build Autotester CLI
You can’t perform that action at this time.
0 commit comments