From bc1b02e340ab919f67c97ac292befe5f3a588643 Mon Sep 17 00:00:00 2001 From: RedxLus Date: Wed, 13 Jan 2021 04:54:42 +0100 Subject: [PATCH] Update cmake-windows.yml --- .github/workflows/cmake-windows.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml index c1fecdb8..f7f25e7f 100644 --- a/.github/workflows/cmake-windows.yml +++ b/.github/workflows/cmake-windows.yml @@ -12,14 +12,25 @@ jobs: steps: - - name: test + - name: Install GIT shell: powershell run: Install-Module posh-git -Scope CurrentUser -Force - uses: actions/checkout@v2 - - name: test 2 + - name: Clone repos shell: powershell - run: git --version + run: | + git clone https://github.com/xmrig/xmrig.git + git clone https://github.com/xmrig/xmrig-deps.git + + - uses: msys2/setup-msys2@v2 + + - shell: powershell + run: | + msys2 -c 'pacman -Syu' + msys2 -c 'uname -a' + +