Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update maya-hydra-preflight-launcher.yml #67

Merged
merged 1 commit into from
Feb 28, 2024
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/maya-hydra-preflight-launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
# runs-on: ubuntu-latest
# if: ${{ github.event.assignee.login == 'ecp-maya-devops-adsk' }}
# steps:
# # Aug 2023: Update from v2 to v3 which uses node16 (node12 is out of support).
# - uses: actions/checkout@v3
# - uses: DoozyX/clang-format-lint-action@v0.16.2
# # Feb 2024: Update from v3 to v4 which uses node20 (node16 is out of support).
# - uses: actions/checkout@v4
# - uses: DoozyX/clang-format-lint-action@v0.17
# with:
# source: '.'
# clangFormatVersion: 14
Expand All @@ -32,7 +32,7 @@ jobs:

# Build start info will be committed here when the remote build is launched
- name: Setup transfer repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ecp-maya-devops-adsk/log-transfer
ref: transfer-hydra
Expand Down Expand Up @@ -76,8 +76,8 @@ jobs:

# Upload files related to this build
- name: Upload files in transfer-hydra directory as artifacts
# Aug 2023: Update from v2 to v3 which uses node16 (node12 is out of support).
uses: actions/upload-artifact@v3
# Feb 2024: Update from v3 to v4 which uses node20 (node16 is out of support).
uses: actions/upload-artifact@v4
with:
name: build logs
path: "transfer-hydra/${{ github.run_id }}_${{ github.run_number }}_*"
Expand All @@ -91,4 +91,4 @@ jobs:
- name: Exit with error if a build failed
# Default shell includes "-o pipefail" and "-e". Specify a different shell
shell: bash --noprofile --norc {0}
run: "if grep -i failed transfer-hydra/${{ github.run_id }}_${{ github.run_number }}_result.txt; then exit 1; else exit 0; fi"
run: "if grep -i failed transfer-hydra/${{ github.run_id }}_${{ github.run_number }}_result.txt; then exit 1; else exit 0; fi"
Loading