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' + +