Skip to content

Commit 57aa41a

Browse files
committed
Draft.
1 parent a52c982 commit 57aa41a

File tree

4 files changed

+101
-0
lines changed

4 files changed

+101
-0
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,14 @@ jobs:
539539
#! ./ubiquitous_bash.sh _closeChRoot && exit 1
540540
true
541541
542+
- name: _build_fallback_staging-buildYML-build_beforeBoot
543+
shell: bash
544+
run: |
545+
#! ./ubiquitous_bash.sh _openChRoot && exit 1
546+
! ./ubiquitous_bash.sh _build_fallback_staging-buildYML-build_beforeBoot && exit 1
547+
#! ./ubiquitous_bash.sh _closeChRoot && exit 1
548+
true
549+
542550
- name: scribe! info! github
543551
shell: bash
544552
run: |
@@ -928,6 +936,15 @@ jobs:
928936
env:
929937
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
930938

939+
- name: _build_fallback_staging-buildYML-build
940+
shell: bash
941+
run: |
942+
#! ./ubiquitous_bash.sh _openChRoot && exit 1
943+
! ./ubiquitous_bash.sh _build_fallback_staging-buildYML-build && exit 1
944+
#! ./ubiquitous_bash.sh _closeChRoot && exit 1
945+
true
946+
947+
931948
- name: fallocate --dig-holes
932949
shell: bash
933950
run: |

.github/workflows/zCustom.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,15 @@ jobs:
446446
! ./ubiquitous_bash.sh _closeChRoot && exit 1
447447
true
448448
449+
- name: _build_fallback_staging-zCustomYML-before_noBoot
450+
shell: bash
451+
run: |
452+
#! ./ubiquitous_bash.sh _openChRoot && exit 1
453+
! ./ubiquitous_bash.sh _build_fallback_staging-zCustomYML-before_noBoot && exit 1
454+
#! ./ubiquitous_bash.sh _closeChRoot && exit 1
455+
true
456+
457+
449458
450459
- name: Force KVM group perms
451460
if: ${{ github.event.inputs.runnerName == 'ubuntu-latest-m' || github.event.inputs.runnerName == 'ubuntu-latest-l' || github.event.inputs.runnerName == 'ubuntu-latest-h' }}
@@ -898,6 +907,15 @@ jobs:
898907
#run: |
899908
#./ubiquitous_bash.sh _create_ubDistBuild-rotten_install-kde
900909

910+
- name: _build_fallback_staging-zCustomYML-build
911+
shell: bash
912+
run: |
913+
#! ./ubiquitous_bash.sh _openChRoot && exit 1
914+
! ./ubiquitous_bash.sh _build_fallback_staging-zCustomYML-build && exit 1
915+
#! ./ubiquitous_bash.sh _closeChRoot && exit 1
916+
true
917+
918+
901919
- name: report! root df
902920
shell: bash
903921
run: |

.github/workflows/zUpgrade.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,15 @@ jobs:
493493
! ./ubiquitous_bash.sh _closeChRoot && exit 1
494494
true
495495
496+
- name: _build_fallback_staging-zUpgradeYML-before_noBoot
497+
shell: bash
498+
run: |
499+
#! ./ubiquitous_bash.sh _openChRoot && exit 1
500+
! ./ubiquitous_bash.sh _build_fallback_staging-zUpgradeYML-before_noBoot && exit 1
501+
#! ./ubiquitous_bash.sh _closeChRoot && exit 1
502+
true
503+
504+
496505
497506
- name: Force KVM group perms
498507
if: ${{ github.event.inputs.runnerName == 'ubuntu-latest-m' || github.event.inputs.runnerName == 'ubuntu-latest-l' || github.event.inputs.runnerName == 'ubuntu-latest-h' }}
@@ -920,6 +929,14 @@ jobs:
920929
run: |
921930
./ubiquitous_bash.sh _create_ubDistBuild-rotten_install-kde
922931
932+
- name: _build_fallback_staging-zUpgradeYML-build
933+
shell: bash
934+
run: |
935+
#! ./ubiquitous_bash.sh _openChRoot && exit 1
936+
! ./ubiquitous_bash.sh _build_fallback_staging-zUpgradeYML-build && exit 1
937+
#! ./ubiquitous_bash.sh _closeChRoot && exit 1
938+
true
939+
923940
- name: report! root df
924941
shell: bash
925942
run: |

_lib/_build-staging-ops.sh

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
2+
_build_fallback_staging-zUpgradeYML-before_noBoot() {
3+
_messageNormal 'init: _build_fallback_staging-zUpgrade-before_noBoot'
4+
5+
true
6+
}
7+
8+
_build_fallback_staging-zUpgradeYML-build() {
9+
_messageNormal '_build_fallback_staging-zUpgrade-boot'
10+
11+
! "$scriptAbsoluteLocation" _openChRoot && _messagePlain_bad 'fail: _openChRoot' && _messageFAIL
12+
13+
! _chroot df -h / && _messagePlain_bad 'fail: chroot: df -h /' && _messageFAIL
14+
15+
! "$scriptAbsoluteLocation" _closeChRoot && _messagePlain_bad 'fail: _closeChRoot' && _messageFAIL
16+
17+
true
18+
}
19+
20+
21+
_build_fallback_staging-zCustomYML-before_noBoot() {
22+
_messageNormal 'init: _build_fallback_staging-zCustomYML-before_noBoot'
23+
24+
#_build_fallback_staging-zUpgrade-before_noBoot "$@"
25+
true
26+
}
27+
28+
_build_fallback_staging-zCustomYML-build() {
29+
_messageNormal '_build_fallback_staging-zCustomYML-boot'
30+
31+
_build_fallback_staging-zUpgradeYML-build "$@"
32+
}
33+
34+
35+
_build_fallback_staging-buildYML-build_beforeBoot() {
36+
_messageNormal 'init: _build_fallback_staging-buildYML-build_beforeBoot'
37+
38+
_build_fallback_staging-zUpgradeYML-build "$@"
39+
}
40+
41+
_build_fallback_staging-buildYML-build() {
42+
_messageNormal '_build_fallback_staging-buildYML-boot'
43+
44+
#_build_fallback_staging-zUpgradeYML-build "$@"
45+
true
46+
}
47+
48+
49+

0 commit comments

Comments
 (0)