Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
acelyc111 committed Dec 19, 2023
1 parent 37598d3 commit e08e6c5
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build_pegasus/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
with:
path: |
/github/home/.ccache
key: ${ARTIFACT_NAME}
key: ${{ env.ARTIFACT_NAME }}_ccache
- name: Free Disk Space (Ubuntu)
run: |
.github/workflows/free_disk_space.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/download_artifact/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: ${ARTIFACT_NAME}_artifact_${{ github.sha }}
name: ${{ env.ARTIFACT_NAME }}_artifact_${{ github.sha }}
path: .
- name: Tar files
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/upload_artifact/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ runs:
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ${ARTIFACT_NAME}_artifact_${{ github.sha }}
path: ${ARTIFACT_NAME}_builder.tar
name: ${{ env.ARTIFACT_NAME }}_artifact_${{ github.sha }}
path: ${{ env.ARTIFACT_NAME }}_builder.tar
1 change: 1 addition & 0 deletions .github/workflows/lint_and_test_admin-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
- ci-test # testing branch for github action
- '*dev'
paths:
- .github/workflows/lint_and_test_admin-cli.yml
- admin-cli/**

# for manually triggering workflow
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint_and_test_admin-cli_always_pass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
- ci-test # testing branch for github action
- '*dev'
paths-ignore:
- .github/workflows/lint_and_test_admin-cli_always_pass.yml
- admin-cli/**

# for manually triggering workflow
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint_and_test_collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ on:
- ci-test # testing branch for github action
- '*dev'
paths:
- '.github/workflows/lint_and_test_collector.yml'
- 'collector/**'
- .github/workflows/lint_and_test_collector.yml
- collector/**

# for manually triggering workflow
workflow_dispatch:
Expand Down
19 changes: 10 additions & 9 deletions .github/workflows/lint_and_test_cpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@ on:
- ci-test # testing branch for github action
- '*dev'
paths:
- '.github/workflows/lint_and_test_cpp.yaml'
- '.github/workflows/thirdparty-regular-push.yml'
- 'docker/thirdparties-src/**'
- 'docker/thirdparties-bin/**'
- 'CMakeLists.txt'
- 'run.sh'
- 'cmake_modules/**'
- 'src/**'
- 'thirdparty/**'
- .github/actions
- .github/workflows/lint_and_test_cpp.yaml
- .github/workflows/thirdparty-regular-push.yml
- docker/thirdparties-src/**
- docker/thirdparties-bin/**
- CMakeLists.txt
- run.sh
- cmake_modules/**
- src/**
- thirdparty/**

# for manually triggering workflow
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint_and_test_go-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
- ci-test # testing branch for github action
- '*dev'
paths:
- .github/workflows/lint_and_test_go-client.yml
- go-client/**

# for manually triggering workflow
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint_and_test_java-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ on:
- ci-test # testing branch for github action
- '*dev' # developing branch
paths:
- .github/workflows/lint_and_test_java-client.yml
- java-client/**

workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint_and_test_pegic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
- ci-test # testing branch for github action
- '*dev'
paths:
- .github/workflows/lint_and_test_pegic.yml
- pegic/**

# for manually triggering workflow
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint_and_test_pegic_always_pass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
- ci-test # testing branch for github action
- '*dev'
paths-ignore:
- .github/workflows/lint_and_test_pegic_always_pass.yml
- pegic/**

# for manually triggering workflow
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_nodejs-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ on:
- ci-test # testing branch for github action
- '*dev' # developing branch
paths:
- .github/workflows/test_nodejs-client.yml
- nodejs-client/**

workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_python-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ on:
- ci-test # testing branch for github action
- '*dev' # developing branch
paths:
- .github/workflows/test_python-client.yml
- python-client/**

workflow_dispatch:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_scala-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ on:
- master
- 'v[0-9]+.*' # release branch
paths:
- scala-client/**
- .github/workflows/test_scala-client.yml
- scala-client/**

workflow_dispatch:

Expand Down

0 comments on commit e08e6c5

Please sign in to comment.