Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 30af56e

Browse files
committed
[CI] Naming
This commit unifies naming after addition of Windows build. See also: #447 Signed-off-by: Dmitrii Makarenko <[email protected]>
1 parent 88f570b commit 30af56e

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.github/workflows/build-docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
build:
17-
name: Docker - ${{ inputs.name }}
17+
name: Linux - Docker - ${{ inputs.name }}
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v3
@@ -79,7 +79,7 @@ jobs:
7979
docker cp ~/.m2 build.${{ inputs.name }}:/home/ghrunner/.m2
8080
docker exec -u ghrunner -i build.${{ inputs.name }} chown -R ghrunner:ghrunner /home/ghrunner
8181
82-
- name: Configure and build the project
82+
- name: Configure and build
8383
run: |
8484
docker exec -u ghrunner build.${{ inputs.name }} dpkg -l
8585
docker exec -u ghrunner build.${{ inputs.name }} sh /_work/omniscidb/scripts/conda/build.sh ${{ inputs.options }}

.github/workflows/windows-build.yml .github/workflows/build-windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
build:
21-
name: Conda - ${{ inputs.name }}
21+
name: Win - Conda - ${{ inputs.name }}
2222
runs-on: windows-latest
2323

2424
outputs:
@@ -66,7 +66,7 @@ jobs:
6666
key: maven-${{ hashFiles('**/pom.xml') }}
6767
restore-keys: maven-
6868

69-
- name: Conda - ${{ inputs.name }}
69+
- name: Configure and build
7070
run: |
7171
& $env:CONDA\condabin\conda.bat info
7272
& $env:CONDA\condabin\conda.bat list -n omnisci-dev

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
build:
21-
name: Conda - ${{ inputs.name }}
21+
name: Linux - Conda - ${{ inputs.name }}
2222
runs-on: ubuntu-latest
2323

2424
outputs:
@@ -88,7 +88,7 @@ jobs:
8888
key: maven-${{ hashFiles('**/pom.xml') }}
8989
restore-keys: maven-
9090

91-
- name: Conda - ${{ inputs.name }}
91+
- name: Configure and build
9292
run: |
9393
set -vx
9494
conda info

.github/workflows/main.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,6 @@ jobs:
1717
name: Build
1818
uses: ./.github/workflows/build.yml
1919

20-
windows-build:
21-
name: Build on Windows
22-
uses: ./.github/workflows/windows-build.yml
23-
with:
24-
name: release
25-
options: -DCMAKE_BUILD_TYPE=Release -DENABLE_FOLLY=off -G "Visual Studio 17 2022"
26-
2720
build-cuda:
2821
name: Build
2922
uses: ./.github/workflows/build.yml
@@ -110,6 +103,13 @@ jobs:
110103
name: l0
111104
reset-cache: ${{ !!inputs.reset-cache }}
112105

106+
windows-build:
107+
name: Build
108+
uses: ./.github/workflows/build-windows.yml
109+
with:
110+
name: cpu
111+
options: -DCMAKE_BUILD_TYPE=Release -DENABLE_FOLLY=off -G "Visual Studio 17 2022"
112+
113113
modin:
114114
name: Integration HDK with Modin (Pytest)
115115
uses: ./.github/workflows/modin.yml

.github/workflows/modin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
name: Build and Test (Conda - cpu)
11+
name: Build and Test (Linux - Conda - cpu)
1212
runs-on: ubuntu-latest
1313

1414
env:

.github/workflows/pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44

55
jobs:
66
build:
7-
name: Build and Test (Conda - cpu)
7+
name: Build and Test (Linux - Conda - cpu)
88
runs-on: ubuntu-latest
99

1010
env:

.github/workflows/test-docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
build:
20-
name: Test (Docker - ${{ inputs.name }})
20+
name: Test (Linux - Docker - ${{ inputs.name }})
2121
runs-on: [self-hosted, linux, docker]
2222
steps:
2323
- name: Clean

.github/workflows/test-l0-docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
build:
20-
name: Test (Docker - ${{ inputs.name }})
20+
name: Test (Linux - Docker - ${{ inputs.name }})
2121
runs-on: [self-hosted, linux, intel-ai.hdk.l0]
2222
steps:
2323
- name: Clean

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
test:
16-
name: Test (Conda - ${{ inputs.name }})
16+
name: Test (Linux - Conda - ${{ inputs.name }})
1717
runs-on: ubuntu-latest
1818

1919
steps:

0 commit comments

Comments
 (0)