Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
ci: action: Some fixes in the job names
Browse files Browse the repository at this point in the history
Use CI i386

Signed-off-by: Maxim Polyakov <[email protected]>
  • Loading branch information
maxpoliak committed Oct 29, 2021
1 parent 0abcf0c commit 9aab74e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/action-build-all-i386.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'CI [i386] Full testing cycle'
name: 'CI i386: Full testing cycle'

on:
push:
Expand All @@ -16,8 +16,8 @@ env:

jobs:
build-all-components:
name: 'CI [i386] Build all'
runs-on: ubuntu-latest
name: 'CI i386: Build all'
runs-on: ubuntu-latest
steps:
- name: 'Step 1: Clone the project repo'
uses: actions/[email protected]
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
path: ./*.exe
creating-qemu-image:
needs: build-all-components
name: 'CI [i386] Create the QEMU bootable disk image with RTEMS'
name: 'CI i386: Create the QEMU bootable disk image with RTEMS'
runs-on: ubuntu-latest
steps:
- name: 'Step 1: Repo'
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
path: boot-disk.img
test-exe-on-qemu:
needs: build-all-components
name: 'CI [i386] Run exe on QEMU'
name: 'CI i386: Run exe on QEMU'
runs-on: ubuntu-latest
continue-on-error: false
steps:
Expand All @@ -111,7 +111,7 @@ jobs:
run: timeout 5 ./ci/ci-test-exe-on-qemu.sh || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
test-image-on-qemu:
needs: creating-qemu-image
name: 'CI [i386] Check virtual disk image'
name: 'CI i386: Check virtual disk image'
runs-on: ubuntu-latest
continue-on-error: false
steps:
Expand All @@ -137,7 +137,7 @@ jobs:
- name: 'Step 5: Test disk image on QEMU'
run: timeout 10 ./ci/ci-test-image-on-qemu.sh || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
build-coreboot:
name: 'CI [i386] Build coreboot'
name: 'CI i386: Build coreboot'
runs-on: ubuntu-latest
steps:
- name: 'Step 1: Install packages for building'
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
path: ${{ env.VERSION }}-x86-p35-coreboot.rom
test-image-with-coreboot-on-qemu:
needs: [build-coreboot, creating-qemu-image]
name: 'CI [i386] Run coreboot with RTEMS disk image on QEMU'
name: 'CI i386: Run coreboot with RTEMS disk image on QEMU'
runs-on: ubuntu-latest
continue-on-error: false
steps:
Expand Down

0 comments on commit 9aab74e

Please sign in to comment.