Skip to content

Commit 7eecc39

Browse files
committed
reschedule the tests on kunpeng
1 parent 0b40170 commit 7eecc39

8 files changed

+13
-13
lines changed

.github/workflows/test_armflang_kunpeng.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
#pull_request: # DANGEROUS! MUST be disabled for self-hosted runners!
77
# Trigger the workflow by cron. The default time zone of GitHub Actions is UTC.
88
schedule:
9-
- cron: '0 16 1-31/3 * *'
9+
- cron: '0 16 5-31/5 * *'
1010
# Trigger the workflow manually
1111
workflow_dispatch:
1212

@@ -49,7 +49,7 @@ jobs:
4949
ARMLD_DIR=${ARMLD//$'\n'/:}
5050
export PATH=$PATH:"$ARMLD_DIR"
5151
fi
52-
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint --all && bash ./mlint --all
52+
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -r && bash ./mlint -r
5353
export FFLAGS=${{ matrix.fflags }}
5454
export TESTDIM=${{ matrix.testdim }}
5555
cd "$ROOT_DIR"/fortran/tests && make rtest_${{ matrix.ikind }}.${{ matrix.solver }}

.github/workflows/test_flang_kunpeng.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
#pull_request: # DANGEROUS! MUST be disabled for self-hosted runners!
77
# Trigger the workflow by cron. The default time zone of GitHub Actions is UTC.
88
schedule:
9-
- cron: '0 16 2-31/3 * *'
9+
- cron: '0 16 4-31/5 * *'
1010
# Trigger the workflow manually
1111
workflow_dispatch:
1212

@@ -47,7 +47,7 @@ jobs:
4747
ARMLD_DIR=${ARMLD//$'\n'/:}
4848
export PATH=$PATH:"$ARMLD_DIR" # For some reason, flang also needs this ld. The system ld does not work.
4949
fi
50-
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint --all && bash ./mlint --all
50+
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -f && bash ./mlint -f
5151
export FFLAGS=${{ matrix.fflags }}
5252
export TESTDIM=${{ matrix.testdim }}
5353
cd "$ROOT_DIR"/fortran/tests && make ftest_${{ matrix.ikind }}.${{ matrix.solver }}

.github/workflows/test_gfortran_kunpeng_big.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
#pull_request: # DANGEROUS! MUST be disabled for self-hosted runners!
77
# Trigger the workflow by cron. The default time zone of GitHub Actions is UTC.
88
schedule:
9-
- cron: '0 12 2-31/2 * *'
9+
- cron: '0 12 2-31/5 * *'
1010
# Trigger the workflow manually
1111
workflow_dispatch:
1212

@@ -39,7 +39,7 @@ jobs:
3939
- name: Conduct the test
4040
shell: bash
4141
run: |
42-
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint --all && bash ./mlint --all # On Kunpeng, perform lintering only for small tests of gfortran
42+
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -g && bash ./mlint -g # On Kunpeng, perform lintering only for small tests of gfortran
4343
export FFLAGS=${{ matrix.fflags }}
4444
export TESTDIM=${{ matrix.testdim }}
4545
cd "$ROOT_DIR"/fortran/tests

.github/workflows/test_gfortran_kunpeng_small.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
#pull_request: # DANGEROUS! MUST be disabled for self-hosted runners!
77
# Trigger the workflow by cron. The default time zone of GitHub Actions is UTC.
88
schedule:
9-
- cron: '0 12 1-31/2 * *'
9+
- cron: '0 12 1-31/5 * *'
1010
# Trigger the workflow manually
1111
workflow_dispatch:
1212

@@ -38,7 +38,7 @@ jobs:
3838
- name: Conduct the test
3939
shell: bash
4040
run: |
41-
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint --all && bash ./mlint --all # On Kunpeng, perform lintering only for small tests of gfortran
41+
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -g && bash ./mlint -g # On Kunpeng, perform lintering only for small tests of gfortran
4242
export FFLAGS=${{ matrix.fflags }}
4343
export TESTDIM=${{ matrix.testdim }}
4444
cd "$ROOT_DIR"/fortran/tests && make gtest_${{ matrix.ikind }}_r4_d1_tst_c.${{ matrix.solver }} && make gtest_${{ matrix.ikind }}_r4_d1_tst.${{ matrix.solver }}

.github/workflows/test_gfortran_pi32_big.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Conduct the test
4040
shell: bash
4141
run: |
42-
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint --all && bash ./mlint --all
42+
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -g && bash ./mlint -g
4343
export FFLAGS=${{ matrix.fflags }}
4444
export TESTDIM=${{ matrix.testdim }}
4545
cd "$ROOT_DIR"/fortran/tests

.github/workflows/test_gfortran_pi32_small.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Conduct the test
3939
shell: bash
4040
run: |
41-
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint --all && bash ./mlint --all # On Raspberry Pi, perform lintering only for small tests of gfortran
41+
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -g && bash ./mlint -g # On Raspberry Pi, perform lintering only for small tests of gfortran
4242
export FFLAGS=${{ matrix.fflags }}
4343
export TESTDIM=${{ matrix.testdim }}
4444
cd "$ROOT_DIR"/fortran/tests && make gtest_${{ matrix.ikind }}_r4_d1_tst_c.${{ matrix.solver }} && make gtest_${{ matrix.ikind }}_r4_d1_tst.${{ matrix.solver }}

.github/workflows/test_gfortran_pi64_big.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Conduct the test
4040
shell: bash
4141
run: |
42-
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -g && bash ./mlint -g
42+
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -g && bash ./mlint -g
4343
export FFLAGS=${{ matrix.fflags }}
4444
export TESTDIM=${{ matrix.testdim }}
4545
cd "$ROOT_DIR"/fortran/tests

.github/workflows/test_nvfortran_kunpeng.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
#pull_request: # DANGEROUS! MUST be disabled for self-hosted runners!
77
# Trigger the workflow by cron. The default time zone of GitHub Actions is UTC.
88
schedule:
9-
- cron: '0 16 3-31/3 * *'
9+
- cron: '0 16 3-31/5 * *'
1010
# Trigger the workflow manually
1111
workflow_dispatch:
1212

@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Conduct the test
3939
run: |
40-
#cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint --all && bash ./mlint --all
40+
cd "$ROOT_DIR"/fortran/${{ matrix.solver }} && bash ./flint -v && bash ./mlint -v
4141
export FFLAGS=${{ matrix.fflags }}
4242
export TESTDIM=${{ matrix.testdim }}
4343
cd "$ROOT_DIR"/fortran/tests && make vtest_${{ matrix.ikind }}.${{ matrix.solver }}

0 commit comments

Comments
 (0)