From 9bd6a4f592b6d39b36328b01ddc3b7d5866bf630 Mon Sep 17 00:00:00 2001 From: nekomimimi Date: Mon, 1 Jan 2024 00:44:49 +0900 Subject: [PATCH 1/2] =?UTF-8?q?python=203.10=E3=81=AE=E3=82=A4=E3=83=B3?= =?UTF-8?q?=E3=82=B9=E3=83=88=E3=83=BC=E3=83=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b7e795..89fc36d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,6 +80,10 @@ jobs: runs-on: ${{ matrix.os }} steps: + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + - name: Version check (semver) run: | VERSION="${{ env.ONNXRUNTIME_VERSION }}" From 35f22ecf03edf330153c13c9701d5adf7771fa92 Mon Sep 17 00:00:00 2001 From: nekomimimi Date: Tue, 2 Jan 2024 04:06:54 +0900 Subject: [PATCH 2/2] =?UTF-8?q?apt-get=20install=E3=81=AEpython3=E3=81=AE?= =?UTF-8?q?=E3=82=A4=E3=83=B3=E3=82=B9=E3=83=88=E3=83=BC=E3=83=AB=E3=82=92?= =?UTF-8?q?=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89fc36d..b573fe1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -123,8 +123,7 @@ jobs: wget \ qemu-user-binfmt \ gcc-${{ matrix.cc_version }}${{ env.ARCH_SUFFIX }} \ - g++-${{ matrix.cxx_version }}${{ env.ARCH_SUFFIX }} \ - python3 + g++-${{ matrix.cxx_version }}${{ env.ARCH_SUFFIX }} - name: Install build dependencies on macos if: steps.cache-build-result.outputs.cache-hit != 'true' && startsWith(matrix.os, 'macos')