comparison .github/workflows/build.yml @ 65:03b1a105d70e

actions: CC_FLAGS->CFLAGS
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Fri, 05 Aug 2022 23:47:32 -0400
parents 495a0733b2c0
children
comparison
equal deleted inserted replaced
64:83b8fdb45d5e 65:03b1a105d70e
29 29
30 - name: make 30 - name: make
31 run: | 31 run: |
32 set PATH=C:\MinGW\bin;%PATH% 32 set PATH=C:\MinGW\bin;%PATH%
33 set CC=mingw32-gcc 33 set CC=mingw32-gcc
34 mingw32-make CC_FLAGS=-static 34 mingw32-make CFLAGS=-static
35 mingw32-make gui CC_FLAGS=-static 35 mingw32-make gui CFLAGS=-static
36 strip msvpvf.exe 36 strip msvpvf.exe
37 strip gui.exe 37 strip gui.exe
38 shell: cmd 38 shell: cmd
39 39
40 - name: Upload artifact 40 - name: Upload artifact
64 - uses: actions/checkout@v2 64 - uses: actions/checkout@v2
65 65
66 - name: make 66 - name: make
67 run: | 67 run: |
68 export CC=clang 68 export CC=clang
69 make CC_FLAGS=-static 69 make CFLAGS=-static
70 make gui CC_FLAGS=-static 70 make gui CFLAGS=-static
71 strip msvpvf.exe 71 strip msvpvf.exe
72 strip gui.exe 72 strip gui.exe
73 73
74 - name: Upload artifact 74 - name: Upload artifact
75 uses: actions/upload-artifact@v2 75 uses: actions/upload-artifact@v2