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