Skip to content

Commit bdfa771

Browse files
author
github-actions
committed
Auto-merge updates from master branch
2 parents 8ed956d + ff627df commit bdfa771

File tree

6 files changed

+25
-6
lines changed

6 files changed

+25
-6
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
strategy:
7575
fail-fast: false
7676
matrix:
77-
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
77+
os: [ubuntu-latest, windows-latest, macos-latest, macos-15]
7878

7979
steps:
8080
- uses: actions/checkout@v3

.github/workflows/test-resnet50.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
python-version: [ "3.9" ]
26+
python-version: [ "3.10", "3.13" ]
2727
backend: [ "onnxruntime", "tf" ]
2828
loadgen-flag: [ "", "--adr.loadgen.tags=_from-pip --pip_loadgen=yes" ]
2929

.github/workflows/test-retinanet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
python-version: [ "3.10" ]
25+
python-version: [ "3.10", "3.13" ]
2626
backend: [ "onnxruntime", "pytorch" ]
2727

2828
steps:

.github/workflows/test-rgat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: [ "3.11" ]
23+
python-version: [ "3.11", "3.12" ]
2424
backend: [ "pytorch" ]
2525
loadgen-flag: [ "" ]
2626

.github/workflows/test-submission-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: [ "3.8", "3.11", "3.12" ]
24+
python-version: [ "3.10", "3.12", "3.14" ]
2525

2626
steps:
2727
- uses: actions/checkout@v3

graph/R-GAT/tools/download_igbh_full.sh

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,74 +33,93 @@ cd $1/full/processed
3333
mkdir paper
3434
cd paper
3535
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper/node_feat.npy
36+
test $? -eq 0 || { echo "❌ Failed to download: paper/node_feat.npy"; exit $?; }
3637
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper/node_label_19.npy
38+
test $? -eq 0 || { echo "❌ Failed to download: paper/node_label_19.npy"; exit $?; }
3739
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper/node_label_2K.npy
40+
test $? -eq 0 || { echo "❌ Failed to download: paper/node_label_2K.npy"; exit $?; }
3841
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper/paper_id_index_mapping.npy
42+
test $? -eq 0 || { echo "❌ Failed to download: paper/paper_id_index_mapping.npy"; exit $?; }
3943
cd ..
4044

4145
# paper__cites__paper
4246
mkdir paper__cites__paper
4347
cd paper__cites__paper
4448
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper__cites__paper/edge_index.npy
49+
test $? -eq 0 || { echo "❌ Failed to download: paper__cites__paper/edge_index.npy"; exit $?; }
4550
cd ..
4651

4752
# author
4853
mkdir author
4954
cd author
5055
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/author/author_id_index_mapping.npy
56+
test $? -eq 0 || { echo "❌ Failed to download: author/author_id_index_mapping.npy"; exit $?; }
5157
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/author/node_feat.npy
58+
test $? -eq 0 || { echo "❌ Failed to download: author/node_feat.npy"; exit $?; }
5259
cd ..
5360

5461
# conference
5562
mkdir conference
5663
cd conference
5764
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/conference/conference_id_index_mapping.npy
65+
test $? -eq 0 || { echo "❌ Failed to download: conference/conference_id_index_mapping.npy"; exit $?; }
5866
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/conference/node_feat.npy
67+
test $? -eq 0 || { echo "❌ Failed to download: conference/node_feat.npy"; exit $?; }
5968
cd ..
6069

6170
# institute
6271
mkdir institute
6372
cd institute
6473
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/institute/institute_id_index_mapping.npy
74+
test $? -eq 0 || { echo "❌ Failed to download: institute/institute_id_index_mapping.npy"; exit $?; }
6575
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/institute/node_feat.npy
76+
test $? -eq 0 || { echo "❌ Failed to download: institute/node_feat.npy"; exit $?; }
6677
cd ..
6778

6879
# journal
6980
mkdir journal
7081
cd journal
7182
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/journal/journal_id_index_mapping.npy
83+
test $? -eq 0 || { echo "❌ Failed to download: journal/journal_id_index_mapping.npy"; exit $?; }
7284
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/journal/node_feat.npy
85+
test $? -eq 0 || { echo "❌ Failed to download: journal/node_feat.npy"; exit $?; }
7386
cd ..
7487

7588
# fos
7689
mkdir fos
7790
cd fos
7891
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/fos/fos_id_index_mapping.npy
92+
test $? -eq 0 || { echo "❌ Failed to download: fos/fos_id_index_mapping.npy"; exit $?; }
7993
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/fos/node_feat.npy
94+
test $? -eq 0 || { echo "❌ Failed to download: fos/node_feat.npy"; exit $?; }
8095
cd ..
8196

8297
# author__affiliated_to__institute
8398
mkdir author__affiliated_to__institute
8499
cd author__affiliated_to__institute
85100
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/author__affiliated_to__institute/edge_index.npy
101+
test $? -eq 0 || { echo "❌ Failed to download: author__affiliated_to__institute/edge_index.npy"; exit $?; }
86102
cd ..
87103

88104
# paper__published__journal
89105
mkdir paper__published__journal
90106
cd paper__published__journal
91107
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper__published__journal/edge_index.npy
108+
test $? -eq 0 || { echo "❌ Failed to download: paper__published__journal/edge_index.npy"; exit $?; }
92109
cd ..
93110

94111
# paper__topic__fos
95112
mkdir paper__topic__fos
96113
cd paper__topic__fos
97114
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper__topic__fos/edge_index.npy
115+
test $? -eq 0 || { echo "❌ Failed to download: paper__topic__fos/edge_index.npy"; exit $?; }
98116
cd ..
99117

100118
# paper__venue__conference
101119
mkdir paper__venue__conference
102120
cd paper__venue__conference
103121
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper__venue__conference/edge_index.npy
122+
test $? -eq 0 || { echo "❌ Failed to download: paper__venue__conference/edge_index.npy"; exit $?; }
104123
cd ..
105124

106125
# paper__written_by__author
@@ -109,4 +128,4 @@ cd paper__written_by__author
109128
wget -c https://igb-public.s3.us-east-2.amazonaws.com/IGBH/processed/paper__written_by__author/edge_index.npy
110129
cd ..
111130

112-
echo "IGBH-IGBH download complete"
131+
echo "IGBH-IGBH download complete"

0 commit comments

Comments
 (0)