From 278d46ccd78a29a00cf16ffd3a08a1973928750b Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral <38422348+umarcor@users.noreply.github.com> Date: Wed, 1 Dec 2021 19:31:17 +0000 Subject: [PATCH] ci/win: use option 'pacboy' of setup-msys2 to install dependencies (#354) --- .github/workflows/build.yml | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35c1f4b2b..80724c39a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: with: fetch-depth: 0 submodules: recursive - + - name: 📜 Restore cache uses: actions/cache@v2 with: @@ -33,7 +33,7 @@ jobs: run: | sudo apt update sudo bash dist/get_deps_debian.sh - + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh sh rustup-init.sh -y --default-toolchain none rm rustup-init.sh @@ -92,14 +92,26 @@ jobs: with: fetch-depth: 0 submodules: recursive - + - name: 🟦 Install msys2 uses: msys2/setup-msys2@v2 + with: + msystem: mingw64 + pacboy: >- + gcc:p + cmake:p + make:p + ccache:p + capstone:p + glfw:p + file:p + mbedtls:p + python:p + freetype:p + dlfcn:p - name: ⬇️ Install dependencies run: | - bash dist/get_deps_msys2.sh - curl --proto '=https' --tlsv1.2 -sSf https://win.rustup.rs > rustup-init.exe ./rustup-init.exe -y --default-host=x86_64-pc-windows-gnu --default-toolchain=none rm rustup-init.exe