Use RHEL workflow only for X64 machine

This commit is contained in:
Alexey Pustovalov 2023-04-03 15:07:45 +09:00
parent c037afa409
commit 775907f542

View File

@ -32,7 +32,7 @@ env:
jobs:
init_build:
name: Initialize build
runs-on: self-hosted
runs-on: [self-hosted, linux, X64]
outputs:
components: ${{ steps.components.outputs.list }}
is_default_branch: ${{ steps.branch_info.outputs.is_default_branch }}
@ -79,7 +79,7 @@ jobs:
matrix:
build: ["build-base"]
runs-on: self-hosted
runs-on: [self-hosted, linux, X64]
outputs:
image: ${{ steps.build_image.outputs.image-with-tag }}
steps:
@ -117,7 +117,7 @@ jobs:
matrix:
build: ["mysql", "sqlite3"]
runs-on: self-hosted
runs-on: [self-hosted, linux, X64]
steps:
- name: Checkout repository
uses: actions/checkout@v3
@ -152,7 +152,7 @@ jobs:
matrix:
build: ${{ fromJson(needs.init_build.outputs.components) }}
runs-on: self-hosted
runs-on: [self-hosted, linux, X64]
steps:
- uses: actions/checkout@v3