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

[CI] Naming #448

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
build:
name: Docker - ${{ inputs.name }}
name: Linux - Docker - ${{ inputs.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
docker cp ~/.m2 build.${{ inputs.name }}:/home/ghrunner/.m2
docker exec -u ghrunner -i build.${{ inputs.name }} chown -R ghrunner:ghrunner /home/ghrunner

- name: Configure and build the project
- name: Configure and build
run: |
docker exec -u ghrunner build.${{ inputs.name }} dpkg -l
docker exec -u ghrunner build.${{ inputs.name }} sh /_work/omniscidb/scripts/conda/build.sh ${{ inputs.options }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

jobs:
build:
name: Conda - ${{ inputs.name }}
name: Win - Conda - ${{ inputs.name }}
runs-on: windows-latest

outputs:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: maven-

- name: Conda - ${{ inputs.name }}
- name: Configure and build
run: |
& $env:CONDA\condabin\conda.bat info
& $env:CONDA\condabin\conda.bat list -n omnisci-dev
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

jobs:
build:
name: Conda - ${{ inputs.name }}
name: Linux - Conda - ${{ inputs.name }}
runs-on: ubuntu-latest

outputs:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: maven-

- name: Conda - ${{ inputs.name }}
- name: Configure and build
run: |
set -vx
conda info
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ jobs:
name: Build
uses: ./.github/workflows/build.yml

windows-build:
name: Build on Windows
uses: ./.github/workflows/windows-build.yml
with:
name: release
options: -DCMAKE_BUILD_TYPE=Release -DENABLE_FOLLY=off -G "Visual Studio 17 2022"

build-cuda:
name: Build
uses: ./.github/workflows/build.yml
Expand Down Expand Up @@ -110,6 +103,13 @@ jobs:
name: l0
reset-cache: ${{ !!inputs.reset-cache }}

windows-build:
name: Build
uses: ./.github/workflows/build-windows.yml
with:
name: cpu
options: -DCMAKE_BUILD_TYPE=Release -DENABLE_FOLLY=off -G "Visual Studio 17 2022"

modin:
name: Integration HDK with Modin (Pytest)
uses: ./.github/workflows/modin.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/modin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
name: Build and Test (Conda - cpu)
name: Build and Test (Linux - Conda - cpu)
runs-on: ubuntu-latest

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
build:
name: Build and Test (Conda - cpu)
name: Build and Test (Linux - Conda - cpu)
runs-on: ubuntu-latest

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
build:
name: Test (Docker - ${{ inputs.name }})
name: Test (Linux - Docker - ${{ inputs.name }})
runs-on: [self-hosted, linux, docker]
steps:
- name: Clean
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-l0-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
build:
name: Test (Docker - ${{ inputs.name }})
name: Test (Linux - Docker - ${{ inputs.name }})
runs-on: [self-hosted, linux, intel-ai.hdk.l0]
steps:
- name: Clean
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
test:
name: Test (Conda - ${{ inputs.name }})
name: Test (Linux - Conda - ${{ inputs.name }})
runs-on: ubuntu-latest

steps:
Expand Down