diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1bc5fadef..3cdcd018e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,11 +19,7 @@ jobs: - name: Install Dependencies shell: bash run: | - if [[ "${{ runner.os }}" == "Windows" ]] ; then - choco install wget -y --no-progress - elif [[ "${{ runner.os }}" == "macOS" ]] ; then - brew install pixman freetype harfbuzz zlib - else + if [[ "${{ runner.os }}" == "Linux" ]] ; then sudo apt-get update -qq sudo apt-get install -y \ libc++-dev libc++abi-dev \ @@ -37,7 +33,9 @@ jobs: skia_build_type=Debug fi skia_arch=$(echo $RUNNER_ARCH | awk '{print tolower($0)}') - wget -q https://github.com/aseprite/skia/releases/download/m124-eadfe707ca/Skia-${{ runner.os }}-$skia_build_type-$skia_arch.zip + echo Downloading https://github.com/aseprite/skia/releases/download/m124-08a5439a6b/Skia-${{ runner.os }}-$skia_build_type-$skia_arch.zip ... + curl -O https://github.com/aseprite/skia/releases/download/m124-08a5439a6b/Skia-${{ runner.os }}-$skia_build_type-$skia_arch.zip + ls -lha * unzip Skia-${{ runner.os }}-$skia_build_type-$skia_arch.zip -d skia fi - uses: ilammy/msvc-dev-cmd@v1