build #119
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# WARNING: May be untested . | |
name: build | |
on: | |
#push: | |
workflow_dispatch: | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | |
schedule: | |
#- cron: '5 1 * * 2,4' | |
#- cron: '5 1 * * 2' | |
#- cron: '5 1 * * 4' | |
#- cron: '5 1 * * 5' | |
#- cron: '5 1 * * 6' | |
#- cron: '5 1 10 * *' | |
- cron: 5 1 10 1/5 * | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
#runs-on: ubuntu-20.04 | |
#runs-on: ubuntu-18.04 | |
steps: | |
- name: users | |
shell: bash | |
run: | | |
sudo -u ubuntu -n bash -c 'sudo -n useradd runner --non-unique -u $UID -g $UID' || true | |
sudo -u ubuntu -n bash -c 'sudo -n groupadd runner --non-unique -g $UID' || true | |
sudo -u runner -n bash -c 'sudo -n echo $USER $UID' || true | |
true | |
# Apparently may increase buildJet 'runner' to 77GB (instead of 61GB). | |
# Apparently may increase Github Actions 'runner' to 59GB (instead of 31GB) . | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@master | |
with: | |
#root-reserve-mb: 512 | |
root-reserve-mb: 2048 | |
#temp-reserve-mb: 100 | |
temp-reserve-mb: 300 | |
#swap-size-mb: 128 | |
swap-size-mb: 192 | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
- name: _getCore_ub | |
shell: bash | |
timeout-minutes: 90 | |
run: | | |
mkdir -p ~/core/infrastructure | |
cd ~/core/infrastructure | |
git clone --depth 1 --recursive https://github.com/mirage335/ubiquitous_bash.git | |
cd ubiquitous_bash | |
./_setupUbiquitous.bat | |
- name: _getMinimal_cloud | |
shell: bash | |
run: | | |
~/core/infrastructure/ubiquitous_bash/ubiquitous_bash.sh _getMinimal_cloud | |
timeout-minutes: 90 | |
- uses: actions/checkout@v2 | |
- name: _getMinimal_cloud | |
shell: bash | |
run: | | |
./ubiquitous_bash.sh _getMinimal_cloud | |
timeout-minutes: 355 | |
- name: _ubDistFetch | |
shell: bash | |
run: | | |
./_ubDistFetch.bat | sudo -n tee ./_lib/_ubDistFetch.log | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: _ubDistFetch_package | |
shell: bash | |
run: | | |
export current_XZ_OPT_core="-T0 -2" | |
./_ubDistFetch_package.bat | sudo -n tee ./_lib/_ubDistFetch_package.log | |
timeout-minutes: 355 | |
- name: _ubDistFetch_split | |
shell: bash | |
run: | | |
./ubiquitous_bash.sh _ubDistFetch_split | sudo -n tee ./_lib/_ubDistFetch_split.log | |
timeout-minutes: 355 | |
- name: release! core | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }} | |
name: build | |
files: | | |
#./_lib/core.tar.xz.part* | |
./_lib/_ubDistFetch.log | |
- name: release! core | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }} | |
name: build | |
files: | | |
./_lib/core.tar.xz.part00 | |
- name: release! core | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }} | |
name: build | |
files: | | |
./_lib/core.tar.xz.part01 | |
- name: release! core | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }} | |
name: build | |
files: | | |
./_lib/core.tar.xz.part02 | |
- name: release! core | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }} | |
name: build | |
files: | | |
./_lib/core.tar.xz.part03 | |
- name: release! core | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }} | |
name: build | |
files: | | |
./_lib/core.tar.xz.part04 | |
- name: release! core | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }} | |
name: build | |
files: | | |
./_lib/core.tar.xz.part05 | |