File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
continuous_integration/scripts Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -77,19 +77,17 @@ runs:
77
77
-e USE_CUDA="$USE_CUDA" \
78
78
-e REPO_DIR="$REPO_DIR" \
79
79
-e LEGATE_CORE_BUILD_MODE="$LEGATE_CORE_BUILD_MODE" \
80
- -e LEGATE_GH_CI_DIR="${{ env.LEGATE_GH_CI_DIR }}" \
81
80
-e PYTHON_VERSION="$PYTHON_VERSION" \
82
81
-v "${{ env.REPO_DIR }}:${{ env.REPO_DIR }}" \
83
- -v "${{ env.LEGATE_GH_CI_DIR }}:${{ env.LEGATE_GH_CI_DIR }}" \
84
82
-v "${{ env.ARTIFACTS_DIR }}:${{ env.ARTIFACTS_DIR }}" \
85
83
--rm "${{ inputs.docker-image }}" \
86
- /bin/bash -c "${{ env.LEGATE_GH_CI_DIR }}/scripts/entrypoint ${{ env.REPO_DIR }}/continuous_integration/scripts/build ${{ inputs.build-type}} ${{ inputs.target-device }}"
84
+ /bin/bash -c "${{ env.REPO_DIR }}/scripts/entrypoint ${{ env.REPO_DIR }}/continuous_integration/scripts/build ${{ inputs.build-type}} ${{ inputs.target-device }}"
87
85
88
86
- if: ${{ !inputs.use-container }}
89
87
name: Build (without container)
90
88
shell: bash --noprofile --norc -xeuo pipefail {0}
91
89
run: |
92
- "${{ env.LEGATE_GH_CI_DIR }}/scripts/entrypoint" "${{ env.REPO_DIR }}/continuous_integration/scripts/build" "${{ inputs.build-type}}" "${{ inputs.target-device }}"
90
+ "${{ env.REPO_DIR }}/scripts/entrypoint" "${{ env.REPO_DIR }}/continuous_integration/scripts/build" "${{ inputs.build-type}}" "${{ inputs.target-device }}"
93
91
94
92
- name: Display structure of the artifacts folder (post build)
95
93
shell: bash --noprofile --norc -xeuo pipefail {0}
Original file line number Diff line number Diff line change 34
34
- name : Run test / analysis
35
35
shell : bash --noprofile --norc -xeuo pipefail {0}
36
36
run : |
37
- "${{ env.LEGATE_GH_CI_DIR }}/scripts/entrypoint" "${{ env.REPO_DIR }}/continuous_integration/scripts/test" ${{ inputs.test-options }}
37
+ "${{ env.REPO_DIR }}/scripts/entrypoint" "${{ env.REPO_DIR }}/continuous_integration/scripts/test" ${{ inputs.test-options }}
Original file line number Diff line number Diff line change 3
3
set_initial_env () {
4
4
set -xeuo pipefail
5
5
6
- export PATH=" ${PATH} :${REPO_DIR} /continuous_integration/scripts: ${LEGATE_GH_CI_DIR} /scripts "
6
+ export PATH=" ${PATH} :${REPO_DIR} /continuous_integration/scripts"
7
7
}
8
8
9
9
entrypoint () {
You can’t perform that action at this time.
0 commit comments