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

My pr check #13

Merged
merged 36 commits into from
Apr 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
8dd32e2
First test
minsukji Apr 8, 2021
131a265
Change branch name
minsukji Apr 8, 2021
78d24e3
github event name...
minsukji Apr 8, 2021
5dd7186
change to tests/ci dir
minsukji Apr 8, 2021
f3273af
change repo name
minsukji Apr 8, 2021
29a6f4f
print out stderr
minsukji Apr 8, 2021
6861b84
try recursive checkout
minsukji Apr 8, 2021
42bbc67
checkout myself
minsukji Apr 8, 2021
74a351d
in a hurry
minsukji Apr 8, 2021
f53a4dd
fetch owner id
minsukji Apr 8, 2021
42318f9
Make setup depend on prcheck
minsukji Apr 8, 2021
b78797f
update with fv3 & ccpp/physics updates in order to turn the NSST mode…
XuLi-NOAA Apr 9, 2021
c2f6e0d
incorporate repo changes
minsukji Apr 9, 2021
69a8567
remove develop
minsukji Apr 9, 2021
761823e
Merge remote-tracking branch 'upstream/develop' into myPRCheck
minsukji Apr 9, 2021
92e8d27
quiet git commands. run-ci
minsukji Apr 9, 2021
ade15dd
Update CMEPS for latest ESCOMP/master; Update PIO to 2.5.2; Refactor …
DeniseWorthen Apr 9, 2021
4b77a48
Merge remote-tracking branch 'origin/feature/PRCheck' into myPRCheck
minsukji Apr 10, 2021
d98e97c
debug this again...
minsukji Apr 10, 2021
14e504d
debug again
minsukji Apr 10, 2021
229f659
debug continues
minsukji Apr 10, 2021
bd20bce
missed repo field
minsukji Apr 10, 2021
c3d7f74
remove debug related texts
minsukji Apr 10, 2021
35e4456
Merge remote-tracking branch 'upstream/develop' into myPRCheck
minsukji Apr 10, 2021
1d5faf4
remove -x flag. run-ci
minsukji Apr 10, 2021
7f3850c
Merge upstream
minsukji Apr 12, 2021
67c646b
reduce sleep time
minsukji Apr 12, 2021
3a5b34d
diag
minsukji Apr 12, 2021
dde62fe
diag2
minsukji Apr 12, 2021
f34edc6
Fix pr_uid
minsukji Apr 12, 2021
d35b3cf
diag again
minsukji Apr 12, 2021
3833191
Merge remote-tracking branch 'origin/feature/PRCheck' into myPRCheck
minsukji Apr 12, 2021
a65dde9
still debugging
minsukji Apr 12, 2021
2669802
Merge remote-tracking branch 'origin/feature/PRCheck' into myPRCheck
minsukji Apr 12, 2021
5a1124e
lets see if this works
minsukji Apr 12, 2021
1a6ba8a
use context as main yml key
minsukji Apr 12, 2021
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
3 changes: 2 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
pr_uid=${{ github.event.pull_request.head.repo.owner.login }}
echo "pr_uid is $pr_uid"
comment_body="$(./repo-check.sh $pr_uid)"
echo "comment_body is $comment_body"

if [[ -n $comment_body ]]; then
echo "Repos are not up to date"
Expand All @@ -60,7 +61,7 @@ jobs:
uses: actions/cache@v2
with:
path: comment_file
key: comment-$GITHUB_RUN_ID
key: comment-${{ github.run_id }}

runcheck:
name: Check if run-ci is requested
Expand Down
2 changes: 1 addition & 1 deletion tests/ci/build_status_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def update_url_data(response, job_name):

def main():

time.sleep(60) # give enough time for jobs to start!
time.sleep(80) # give enough time for jobs to start!
url = sys.stdin.read()
job_name = sys.argv[1]
token = os.environ.get('AUTH')
Expand Down