File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 3939 steps :
4040 - name : Checkout repository
4141 uses : actions/checkout@v4
42+ with :
43+ fetch-depth : 1
44+ submodules : false
4245
4346 - name : Install raylib (Linux)
4447 if : runner.os == 'Linux' && matrix.build_gfx
6467 if : runner.os == 'macOS' && matrix.build_gfx
6568 run : |
6669 set -e
67- brew update
70+ export HOMEBREW_NO_AUTO_UPDATE=1
6871 brew install raylib
6972
7073 - name : Build (Unix)
@@ -105,19 +108,17 @@ jobs:
105108
106109 - name : Build (Windows)
107110 if : runner.os == 'Windows'
108- shell : bash
111+ shell : msys2 {0}
109112 run : |
110113 set -e
114+ make
111115 if [ "${{ matrix.build_gfx }}" = "true" ]; then
112- C:\\msys64\\usr\\bin\\bash -lc "make && make basic-gfx"
113- else
114- choco install -y make
115- make
116+ make basic-gfx
116117 fi
117118
118119 - name : Run tests (Windows)
119120 if : runner.os == 'Windows'
120- shell : bash
121+ shell : msys2 {0}
121122 run : |
122123 set -e
123124 for t in tests/*.bas; do
You can’t perform that action at this time.
0 commit comments