Skip to content

Commit 093fca8

Browse files
authored
[infra] Migrate to github-hosted runner (#16441)
This commit replace self-hosted runners (one-x64-linux, one-arm-linux) with standard GitHub-hosted runners (ubuntu-24.04, ubuntu-24.04-arm) and update container images from private Azure registry to public registries. ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
1 parent bf53cc8 commit 093fca8

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/pub-onert-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
arch: [ 'x86_64', 'aarch64' ]
2525
include:
2626
- arch: x86_64
27-
runner: one-x64-linux
28-
image: samsungonedev.azurecr.io/pypa/manylinux_2_28_x86_64
27+
runner: ubuntu-24.04
28+
image: quay.io/pypa/manylinux_2_28_x86_64
2929
- arch: aarch64
30-
runner: one-arm-linux
31-
image: samsungonedev.azurecr.io/pypa/manylinux_2_28_aarch64
30+
runner: ubuntu-24.04-arm
31+
image: quay.io/pypa/manylinux_2_28_aarch64
3232
fail-fast: false
3333
runs-on: ${{ matrix.runner }}
3434
container:

.github/workflows/run-onert-android-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ concurrency:
4242
jobs:
4343
build:
4444
if: github.repository_owner == 'Samsung'
45-
runs-on: one-x64-linux
45+
runs-on: ubuntu-24.04
4646
container:
47-
image: samsungonedev.azurecr.io/nnfw/one-devtools:android-sdk
47+
image: nnfw/one-devtools:android-sdk
4848
options: --user root
4949
env:
5050
TARGET_ARCH: aarch64

.github/workflows/run-onert-cross-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
include:
5252
- arch: armv7l
5353
platform: arm
54-
runs-on: one-x64-linux
54+
runs-on: ubuntu-24.04
5555
container:
56-
image: samsungonedev.azurecr.io/nnfw/one-devtools:${{ matrix.ubuntu_code }}
56+
image: nnfw/one-devtools:${{ matrix.ubuntu_code }}
5757
options: --user root
5858
env:
5959
TARGET_ARCH: ${{ matrix.arch }}

.github/workflows/run-onert-native-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
arch: [ x86_64, aarch64 ]
5151
include:
5252
- arch: x86_64
53-
runner: one-x64-linux
53+
runner: ubuntu-24.04
5454
- arch: aarch64
55-
runner: one-arm-linux
55+
runner: ubuntu-24.04-arm
5656
runs-on: ${{ matrix.runner }}
5757
container:
5858
# Use test image: default image is not supporting arm64 yet
59-
image: samsungonedev.azurecr.io/nnfw/one-devtools:${{ matrix.ubuntu_code }}
59+
image: nnfw/one-devtools:${{ matrix.ubuntu_code }}
6060
options: --user root
6161
env:
6262
TARGET_ARCH: ${{ matrix.arch }}

0 commit comments

Comments
 (0)