Skip to content

Commit

Permalink
ci-build: update node titles
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalak committed Oct 31, 2024
1 parent db395a1 commit 61153ff
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4
test-bootstrap-nt:
Windows-pre:
needs: start-start
name: Bootstrap Test (OW ${{ matrix.owversion }}) Windows
strategy:
matrix:
owversion: ['1.9', '2.0']
name: Bootstrap Test OW ${{ matrix.owversion }} Windows
runs-on: 'windows-2022'
steps:
- name: checkout
Expand All @@ -46,12 +46,12 @@ jobs:
owversion: ${{ matrix.owversion }}
owtag: '2023-01-01-Build'
owdebug: ${{ vars.OWDEBUG }}
test-bootstrap-lnx:
Linux-pre:
needs: start-start
name: Bootstrap Test (OW ${{ matrix.owversion }}) Linux
strategy:
matrix:
owversion: ['1.9', '2.0']
name: Bootstrap Test OW ${{ matrix.owversion }} Linux
runs-on: 'ubuntu-latest'
steps:
- name: checkout
Expand All @@ -65,7 +65,7 @@ jobs:
owdebug: ${{ vars.OWDEBUG }}
Linux:
needs:
- test-bootstrap-lnx
- Linux-pre
strategy:
matrix:
include:
Expand All @@ -85,14 +85,14 @@ jobs:
owdebug: ${{ vars.OWDEBUG }}
Windows:
needs:
- test-bootstrap-nt
name: Windows ${{ matrix.title }}
- Windows-pre
strategy:
matrix:
include:
- owtools: 'VISUALC'
tools: 'vs2022'
title: 'x64 vs2022'
name: Windows ${{ matrix.title }}
uses: "./.github/workflows/cibldnt.yml"
with:
arch: 'x64'
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
Linux:
needs: check_run
if: needs.check_run.outputs.runit
name: ${{ matrix.title }}
strategy:
matrix:
include:
- owtools: 'GCC'
tools: 'gcc'
image: 'ubuntu-20.04'
title: 'Linux x64 gcc'
title: 'x64 gcc'
name: Linux ${{ matrix.title }}
uses: "./.github/workflows/rel-lnx.yml"
with:
arch: 'x64'
Expand All @@ -44,14 +44,14 @@ jobs:
Windows:
needs: check_run
if: needs.check_run.outputs.runit
name: ${{ matrix.title }}
strategy:
matrix:
include:
- owtools: 'VISUALC'
tools: 'vs2019'
image: 'windows-2019'
title: 'Windows x64 vs2019'
title: 'x64 vs2019'
name: Windows ${{ matrix.title }}
uses: "./.github/workflows/rel-nt.yml"
with:
arch: 'x64'
Expand All @@ -62,20 +62,20 @@ jobs:
OSX:
needs: check_run
if: needs.check_run.outputs.runit
name: ${{ matrix.title }}
strategy:
matrix:
include:
- owtools: 'CLANG'
arch: 'x64'
image: 'macos-13'
relpath: 'rel bino64'
title: 'OSX x64 clang'
title: 'x64 clang'
- owtools: 'CLANG'
arch: 'a64'
image: 'macos-14'
relpath: 'rel armo64'
title: 'OSX arm64 clang'
title: 'arm64 clang'
name: OSX ${{ matrix.title }}
uses: "./.github/workflows/rel-osx.yml"
with:
arch: ${{ matrix.arch }}
Expand All @@ -84,12 +84,11 @@ jobs:
owtools: ${{ matrix.owtools }}
image: ${{ matrix.image }}
owdebug: ${{ vars.OWDEBUG }}
install:
Installers:
needs:
- Linux
- Windows
- OSX
name: Installers
strategy:
matrix:
include:
Expand All @@ -109,6 +108,7 @@ jobs:
title: 'Windows(64-bit)'
- insttype: snapshot
title: 'OW full snapshot'
name: Installer ${{ matrix.title }}
runs-on: ubuntu-latest
steps:
- name: checkout
Expand All @@ -119,7 +119,7 @@ jobs:
target: ${{ matrix.insttype }}
owdebug: ${{ vars.OWDEBUG }}
release:
needs: install
needs: Installers
name: "Create GitHub Release"
runs-on: ubuntu-latest
outputs:
Expand All @@ -136,9 +136,8 @@ jobs:
owcurlopts: ${{ vars.OWCURLOPTS }}
- run: echo "drelid=${{ steps.rel_rel.outputs.drelid }};mrelid=${{ steps.rel_rel.outputs.mrelid }}"
shell: bash
assets:
Uploads:
needs: release
name: "Upload Installers"
strategy:
matrix:
include:
Expand All @@ -158,13 +157,14 @@ jobs:
asset: instwin64
- title: OW full snapshot
asset: snapshot
name: Upload ${{ matrix.title }} installer
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- run: echo "drelid=${{ needs.release.outputs.drelid }};mrelid=${{ needs.release.outputs.mrelid }}"
shell: bash
- name: Upload ${{ matrix.title }} Asset
- name: ${{ matrix.title }} Asset
uses: "./.github/actions/ghassets"
with:
hostos: 'lnx'
Expand All @@ -174,7 +174,7 @@ jobs:
owdebug: ${{ vars.OWDEBUG }}
owcurlopts: ${{ vars.OWCURLOPTS }}
end-end:
needs: assets
needs: Uploads
name: Call to delete Artifacts
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 61153ff

Please sign in to comment.