Skip to content

Commit

Permalink
build.ymlでpython 3.10のインストール (#24)
Browse files Browse the repository at this point in the history
* python 3.10のインストール

* apt-get installのpython3のインストールを削除
  • Loading branch information
nekomimimi authored Jan 2, 2024
1 parent e4e26e4 commit 8a198bc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down Expand Up @@ -119,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')
Expand Down

0 comments on commit 8a198bc

Please sign in to comment.