Skip to content

Commit

Permalink
ビルド時にwarningsが出ないよう修正 (#33)
Browse files Browse the repository at this point in the history
* ビルド時にwarningsが出ないよう修正

* Apply suggestions from code review

---------

Co-authored-by: Hiroshiba <[email protected]>
  • Loading branch information
stakemura and Hiroshiba authored Jan 14, 2024
1 parent 464f569 commit a7747bb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
fi
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: microsoft/onnxruntime
submodules: true
Expand All @@ -160,10 +160,11 @@ jobs:

- name: Cache build result
id: cache-build-result
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: build/
key: ${{ matrix.artifact_name }}-v${{ env.ONNXRUNTIME_VERSION }}-cache-v1-${{ hashFiles('matrix.json') }}
key: ${{ matrix.artifact_name }}-v${{ env.ONNXRUNTIME_VERSION }}-cache-${{ hashFiles('matrix.json') }}


- name: Install tree
if: steps.cache-build-result.outputs.cache-hit != 'true' && runner.os == 'Windows'
Expand Down Expand Up @@ -305,11 +306,10 @@ jobs:
mv ${{ matrix.result_dir }}/${{ matrix.artifact_name }} ./artifact/
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: artifact/*
retention-days: 14

- name: Generate RELEASE_NAME
if: env.RELEASE == 'true'
Expand Down Expand Up @@ -341,17 +341,17 @@ jobs:
- uses: actions/checkout@v3

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: onnxruntime-ios-arm64
path: artifact/onnxruntime-aarch64-apple-ios

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: onnxruntime-ios-sim-arm64
path: artifact/onnxruntime-aarch64-apple-ios-sim

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: onnxruntime-ios-sim-x86_64
path: artifact/onnxruntime-x86_64-apple-ios
Expand Down

0 comments on commit a7747bb

Please sign in to comment.