From c99b6e00f748d4ebce1ebbddf580c430c3570e88 Mon Sep 17 00:00:00 2001 From: Aryeh Date: Fri, 27 Nov 2020 14:11:21 +1100 Subject: [PATCH] Update windows.yml --- .github/workflows/windows.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 866baf4..70672fe 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,21 +13,28 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 + - name: make setup + working-directory: D:/a/raylib-cpp-starter run: mingw32-make setup shell: cmd - working-directory: D:/a/raylib-cpp-starter - name: make compile + working-directory: D:/a/raylib-cpp-starter run: mingw32-make compile + shell: cmd + - name: make clean + working-directory: D:/a/raylib-cpp-starter run: mingw32-make clean shell: cmd - working-directory: D:/a/raylib-cpp-starter - name: make compile CXX=g++ + working-directory: D:/a/raylib-cpp-starter run: mingw32-make compile CXX=g++ + shell: cmd + - name: make clean + working-directory: D:/a/raylib-cpp-starter run: mingw32-make clean shell: cmd - working-directory: D:/a/raylib-cpp-starter