diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d7c6ba..a7bbe2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ on: default: 'false' env: - version: m116-51072f3-1 + version: m122-6726cd3-1 jobs: macos: @@ -119,7 +119,7 @@ jobs: - uses: nttld/setup-ndk@v1 id: setup-ndk with: - ndk-version: r21e + ndk-version: r25c - run: python3 script/build.py --target android --build-type ${{ matrix.build_type }} --machine ${{ matrix.machine }} --ndk ${{ steps.setup-ndk.outputs.ndk-path }} - run: python3 script/archive.py --version ${{ env.version }} --target android --build-type ${{ matrix.build_type }} --machine ${{ matrix.machine }} - uses: actions/upload-artifact@v2 @@ -208,7 +208,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} windows: - runs-on: windows-2019 + runs-on: windows-2022 strategy: matrix: build_type: [Debug, Release] diff --git a/README.md b/README.md index 4e6e99b..feafb58 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,15 @@ Prebuilt binaries can be found [in releases](https://github.com/JetBrains/skia-p ## Building locally ```sh -python3 script/checkout.py --version m116-51072f3-1 +python3 script/checkout.py --version m122-6726cd3-1 python3 script/build.py -python3 script/archive.py --version m116-51072f3-1 +python3 script/archive.py --version m122-6726cd3-1 ``` To build a debug build: ```sh -python3 script/checkout.py --version m116-51072f3-1 +python3 script/checkout.py --version m122-6726cd3-1 python3 script/build.py --build-type Debug -python3 script/archive.py --version m116-51072f3-1 --build-type Debug +python3 script/archive.py --version m122-6726cd3-1 --build-type Debug ```