Skip to content

Commit 3a80a10

Browse files
authored
Merge pull request #380 from yuzawa-san/codecov-merging
chore: codecov merging
2 parents 9e78db5 + 43afe90 commit 3a80a10

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@ jobs:
3838
run: |
3939
./gradlew --no-daemon -s :build
4040
- name: Upload coverage to Codecov
41-
if: ${{ matrix.java == '23' && matrix.os == 'ubuntu-latest' }}
41+
# skip minimum version
42+
if: ${{ matrix.java != '23' }}
4243
uses: codecov/codecov-action@v5.5.2
43-
env:
44-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
44+
with:
45+
token: ${{ secrets.CODECOV_TOKEN }}
46+
flags: java-${{ matrix.java }}-${{ matrix.os }}
4547
- name: Save reports
4648
uses: actions/upload-artifact@v6
4749
if: ${{ failure() }}

src/test/java/com/jyuzawa/onnxruntime/SessionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1356,7 +1356,7 @@ public void profilingTest() throws IOException {
13561356
}
13571357

13581358
@Test
1359-
@EnabledOnOs(value = OS.MAC, architectures = "x86_64")
1359+
@EnabledOnOs(value = OS.MAC)
13601360
public void customOpTest() throws Exception {
13611361
Path f = Path.of(getClass().getResource("/libcustom_op_library.dylib").toURI());
13621362
try (Session session = environment
-36 KB
Binary file not shown.

0 commit comments

Comments
 (0)