-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simple test to run a github preflight. (#1)
- Loading branch information
1 parent
d78bd1b
commit 31c3f5d
Showing
1 changed file
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,24 +9,25 @@ on: | |
|
||
jobs: | ||
|
||
clang_format_linter: | ||
timeout-minutes: 30 | ||
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/[email protected] | ||
with: | ||
source: '.' | ||
clangFormatVersion: 10 | ||
# clang_format_linter: | ||
# timeout-minutes: 30 | ||
# 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/[email protected] | ||
# with: | ||
# source: '.' | ||
# clangFormatVersion: 14 | ||
|
||
# Wait for remote build to start and finish, report results | ||
build_preflight: | ||
timeout-minutes: 400 | ||
runs-on: ubuntu-latest | ||
needs: clang_format_linter | ||
if: ${{ github.event.assignee.login == 'ecp-maya-devops-adsk' }} | ||
# needs: clang_format_linter | ||
# Start preflight by assigning pull-request to yourself. | ||
if: ${{ github.event.assignee.login == github.event.pull_request.user.login }} | ||
steps: | ||
|
||
# Build start info will be committed here when the remote build is launched | ||
|