Skip to content

Commit

Permalink
Python 3.12 追加
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Oct 3, 2023
1 parent 45c105c commit a58e723
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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:
Expand Down Expand Up @@ -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<<EOF" >> $GITHUB_OUTPUT
Expand All @@ -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 }}

0 comments on commit a58e723

Please sign in to comment.