Skip to content

Commit

Permalink
fix changed-files paths
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Sep 16, 2022
1 parent 1984082 commit e8a8b1c
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 31 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-push-image-ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ jobs:
files: |
${{ inputs.file }}
${{ inputs.files-to-diff }}
lerna\.json
\.github/workflows/merge\.pr\.yml
\.github/workflows/build-and-push-image\.yml
\.github/actions/build-and-publish-image-ssh/action\.yml
lerna.json
.github/workflows/merge.pr.yml
.github/workflows/build-and-push-image.yml
.github/actions/build-and-publish-image-ssh/action.yml
- name: Set environment variables
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-and-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ jobs:
files: |
${{ inputs.file }}
${{ inputs.files-to-diff }}
lerna\.json
\.github/workflows/merge\.pr\.yml
\.github/workflows/build-and-push-image\.yml
\.github/actions/build-and-publish-image/action\.yml
lerna.json
.github/workflows/merge.pr.yml
.github/workflows/build-and-push-image.yml
.github/actions/build-and-publish-image/action.yml
- name: Set environment variables
shell: bash
Expand Down
24 changes: 17 additions & 7 deletions .github/workflows/main.pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,22 @@ jobs:
path: node
base_sha: ${{ steps.last_main_commit.outputs.commit_hash }}
files: |
yarn\.lock
lerna\.json
package\.json
modules/**/package\.json
modules/**/CMakeLists\.txt
modules/**/*\.(c|h|ts|js|cu|cuh|cpp|hpp|json|cmake|tsconfig)
yarn.lock
lerna.json
package.json
modules/**/*.c
modules/**/*.h
modules/**/*.ts
modules/**/*.js
modules/**/*.cu
modules/**/*.cuh
modules/**/*.cpp
modules/**/*.hpp
modules/**/*.json
modules/**/*.cmake
modules/**/*.tsconfig
modules/**/package.json
modules/**/CMakeLists.txt
- name: Check if GitHub Actions or devel main Dockerfile changed
id: dev_changed
Expand All @@ -79,7 +89,7 @@ jobs:
path: node
base_sha: ${{ steps.last_main_commit.outputs.commit_hash }}
files: |
dev/dockerfiles/devel/main\.Dockerfile
dev/dockerfiles/devel/main.Dockerfile
- name: Update runner env
env:
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/merge.pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
file: dev/dockerfiles/devel/main.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
files-to-diff: |
\.npmrc
.npmrc
modules
yarn\.lock
yarn.lock
build-args: |
"UCX_VERSION=1.12.1"
Expand All @@ -39,10 +39,10 @@ jobs:
file: dev/dockerfiles/devel/package.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
files-to-diff: |
\.npmrc
.npmrc
modules
yarn\.lock
dev/dockerfiles/devel/main\.Dockerfile
yarn.lock
dev/dockerfiles/devel/main.Dockerfile
build-args: |
"CUDAARCHS=ALL"
"SCCACHE_IDLE_TIMEOUT=32768"
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/cudf.Dockerfile
files-to-diff: |
\.npmrc
.npmrc
modules/(core|rmm|cuda|cudf)
manual-build: ${{ github.event_name == 'workflow_dispatch' }}

Expand All @@ -95,7 +95,7 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/cuml.Dockerfile
files-to-diff: |
\.npmrc
.npmrc
modules/(core|rmm|cuda|cudf|cuml)
manual-build: ${{ github.event_name == 'workflow_dispatch' }}

Expand All @@ -113,7 +113,7 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/cugraph.Dockerfile
files-to-diff: |
\.npmrc
.npmrc
modules/(core|rmm|cuda|cudf|cugraph)
manual-build: ${{ github.event_name == 'workflow_dispatch' }}

Expand All @@ -131,7 +131,7 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/cuspatial.Dockerfile
files-to-diff: |
\.npmrc
.npmrc
modules/(core|rmm|cuda|cudf|cuspatial)
manual-build: ${{ github.event_name == 'workflow_dispatch' }}

Expand All @@ -149,7 +149,7 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/glfw.Dockerfile
files-to-diff: |
\.npmrc
.npmrc
modules/(core|glfw|webgl)
manual-build: ${{ github.event_name == 'workflow_dispatch' }}

Expand All @@ -167,7 +167,7 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/sql.Dockerfile
files-to-diff: |
\.npmrc
.npmrc
modules/(core|rmm|cuda|cudf|sql)
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-args: |
Expand All @@ -187,8 +187,8 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/main.Dockerfile
files-to-diff: |
\.npmrc
modules/(core|cuda|glfw|webgl|rmm|cudf|sql|cuml|cugraph|cuspatial|deck\.gl|jsdom)
.npmrc
modules/(core|cuda|glfw|webgl|rmm|cudf|sql|cuml|cugraph|cuspatial|deck.gl|jsdom)
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-args: |
"UCX_VERSION=1.12.1"
Expand All @@ -207,7 +207,7 @@ jobs:
devel: devel-main
file: dev/dockerfiles/runtime/demo.Dockerfile
files-to-diff: |
\.npmrc
.npmrc
modules/demo
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-args: |
Expand All @@ -224,7 +224,7 @@ jobs:
image: runtime-notebook
file: dev/dockerfiles/runtime/notebook.Dockerfile
files-to-diff: |
\.npmrc
**/*\.ipynb
.npmrc
**/*.ipynb
modules/demo
manual-build: ${{ github.event_name == 'workflow_dispatch' }}

0 comments on commit e8a8b1c

Please sign in to comment.