From a58e7237d812591118156270a71f32c9373a6fdb Mon Sep 17 00:00:00 2001 From: voluntas Date: Tue, 3 Oct 2023 10:50:17 +0900 Subject: [PATCH] =?UTF-8?q?Python=203.12=20=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ace858df..15012256 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" exclude: # Jetson は Python 3.8 のみ作成する - platform: { name: ubuntu-20.04_armv8_jetson } @@ -38,6 +39,8 @@ jobs: python_version: "3.10" - platform: { name: ubuntu-20.04_armv8_jetson } python_version: "3.11" + - platform: { name: ubuntu-20.04_armv8_jetson } + python_version: "3.12" runs-on: ${{ matrix.platform.runs_on }} timeout-minutes: 60 steps: @@ -192,31 +195,32 @@ jobs: steps: - uses: actions/checkout@v4 - uses: ./.github/actions/download - with: {"platform":"ubuntu-22.04_x86_64", "python_version":"3.8"} + with: { "platform": "ubuntu-22.04_x86_64", "python_version": "3.8" } - uses: ./.github/actions/download - with: {"platform":"ubuntu-22.04_x86_64", "python_version":"3.9"} + with: { "platform": "ubuntu-22.04_x86_64", "python_version": "3.9" } - uses: ./.github/actions/download - with: {"platform":"ubuntu-22.04_x86_64", "python_version":"3.10"} + with: { "platform": "ubuntu-22.04_x86_64", "python_version": "3.10" } - uses: ./.github/actions/download - with: {"platform":"ubuntu-22.04_x86_64", "python_version":"3.11"} + with: { "platform": "ubuntu-22.04_x86_64", "python_version": "3.11" } - uses: ./.github/actions/download - with: {"platform":"ubuntu-20.04_armv8_jetson", "python_version":"3.8"} + with: + { "platform": "ubuntu-20.04_armv8_jetson", "python_version": "3.8" } - uses: ./.github/actions/download - with: {"platform":"macos-13_arm64", "python_version":"3.8"} + with: { "platform": "macos-13_arm64", "python_version": "3.8" } - uses: ./.github/actions/download - with: {"platform":"macos-13_arm64", "python_version":"3.9"} + with: { "platform": "macos-13_arm64", "python_version": "3.9" } - uses: ./.github/actions/download - with: {"platform":"macos-13_arm64", "python_version":"3.10"} + with: { "platform": "macos-13_arm64", "python_version": "3.10" } - uses: ./.github/actions/download - with: {"platform":"macos-13_arm64", "python_version":"3.11"} + with: { "platform": "macos-13_arm64", "python_version": "3.11" } - uses: ./.github/actions/download - with: {"platform":"windows-2019", "python_version":"3.8"} + with: { "platform": "windows-2019", "python_version": "3.8" } - uses: ./.github/actions/download - with: {"platform":"windows-2019", "python_version":"3.9"} + with: { "platform": "windows-2019", "python_version": "3.9" } - uses: ./.github/actions/download - with: {"platform":"windows-2019", "python_version":"3.10"} + with: { "platform": "windows-2019", "python_version": "3.10" } - uses: ./.github/actions/download - with: {"platform":"windows-2019", "python_version":"3.11"} + with: { "platform": "windows-2019", "python_version": "3.11" } - name: Env to output run: | echo "package_paths<> $GITHUB_OUTPUT @@ -226,5 +230,4 @@ jobs: - name: Release uses: softprops/action-gh-release@v1 with: - files: - ${{ steps.env.outputs.package_paths }} + files: ${{ steps.env.outputs.package_paths }}