diff --git a/.github/workflows/atomicdex-desktop-cd.yml b/.github/workflows/atomicdex-desktop-cd.yml index ae77398d5a..f5050b8e31 100644 --- a/.github/workflows/atomicdex-desktop-cd.yml +++ b/.github/workflows/atomicdex-desktop-cd.yml @@ -367,7 +367,7 @@ jobs: windows-release: name: Win Build/Release - runs-on: windows-latest + runs-on: windows-2019 steps: - uses: actions/checkout@v2 @@ -445,7 +445,7 @@ jobs: windows-debug: name: Win Build/Debug - runs-on: windows-latest + runs-on: windows-2019 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/atomicdex-desktop-ci.yml b/.github/workflows/atomicdex-desktop-ci.yml index 63a4fa44b1..d5a2357d17 100644 --- a/.github/workflows/atomicdex-desktop-ci.yml +++ b/.github/workflows/atomicdex-desktop-ci.yml @@ -68,13 +68,13 @@ jobs: host: 'mac' - name: windows-release - os: windows-latest + os: windows-2019 qt: '5.15.2' type: 'Release' host: 'windows' - name: windows-debug - os: windows-latest + os: windows-2019 qt: '5.15.2' type: 'Debug' host: 'windows' diff --git a/CMakeLists.txt b/CMakeLists.txt index efbce5181f..27a70b272e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,13 +60,13 @@ endif () ##! We fetch our dependencies if (APPLE) FetchContent_Declare(mm2 - URL https://sdk.devbuilds.komodo.earth/main/mm2_b0fd99e-mac-x86-64.zip) + URL https://github.com/KomodoPlatform/komodo-defi-framework/releases/download/v2.0.0-beta/mm2-b0fd99e84-Darwin-Release.zip) elseif (UNIX AND NOT APPLE) FetchContent_Declare(mm2 - URL https://sdk.devbuilds.komodo.earth/main/mm2_b0fd99e-linux-x86-64.zip) + URL https://github.com/KomodoPlatform/komodo-defi-framework/releases/download/v2.0.0-beta/mm2-b0fd99e84-Linux-Release.zip) else () FetchContent_Declare(mm2 - URL https://sdk.devbuilds.komodo.earth/main/mm2_b0fd99e-win-x86-64.zip) + URL https://github.com/KomodoPlatform/komodo-defi-framework/releases/download/v2.0.0-beta/mm2-b0fd99e84-Win64.zip) endif () #FetchContent_Declare(qmaterial URL https://github.com/KomodoPlatform/Qaterial/archive/last-clang-working-2.zip)