Skip to content

Commit d8c9ed9

Browse files
committed
install
1 parent c6a7748 commit d8c9ed9

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/windows-msys2.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
--enable-websocket-interface
6565
--disable-ecasound
6666
--disable-intersense
67+
--prefix=/ssr-files
6768
CPPFLAGS="-I/ucrt64/include -I`pwd`/../websocketpp -D_WEBSOCKETPP_CPP11_THREAD_"
6869
LDFLAGS=-L/ucrt64/lib
6970
LIBS="-lws2_32 -lwsock32 -lglu32 -lopengl32"
@@ -79,10 +80,13 @@ jobs:
7980
working-directory: ssr
8081
run: |
8182
make
82-
# TODO: run "make install" (specifying a suitable installation location)
83-
# and then upload all installed files
83+
- name: make install
84+
working-directory: ssr
85+
run: |
86+
make install DESTDIR=$GITHUB_WORKSPACE/installed-files
87+
# TODO: create installer from installed files, upload installer
8488
- name: upload executables
8589
uses: actions/upload-artifact@v3
8690
with:
87-
name: executables
88-
path: ssr/src/ssr-*
91+
name: ssr-files
92+
path: installed-files

0 commit comments

Comments
 (0)