-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
231230.012324.HKT revise test_nagfor.yml
- Loading branch information
1 parent
7957237
commit bb42978
Showing
2 changed files
with
21 additions
and
17 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 |
---|---|---|
|
@@ -193,19 +193,22 @@ jobs: | |
run: bash scripts/check_success_timeout_big_test ${{ secrets.GITHUB_TOKEN }} ${{ github.repository }} ${{ github.run_id }} | ||
|
||
|
||
merge_artifacts: | ||
runs-on: ubuntu-latest | ||
if: always() | ||
needs: test | ||
steps: | ||
- name: Download all workflow run artifacts | ||
uses: actions/[email protected] | ||
- name: Move all artifacts to the current directory | ||
run: ls -al && mv */* ./ && ls -al | ||
- name: Upload all files | ||
uses: actions/[email protected] | ||
with: | ||
name: all | ||
path: ./* | ||
- name: Remove all files | ||
run: ls -al && rm -rf ./* | ||
# As of 20231228, it often fails with "Unable to download and extract artifact: Request timeout" | ||
# or "EMFILE: too many open files". | ||
# See https://github.com/actions/upload-artifact/issues/485 | ||
# merge_artifacts: | ||
# runs-on: ubuntu-latest | ||
# if: always() | ||
# needs: test | ||
# steps: | ||
# - name: Download all workflow run artifacts | ||
# uses: actions/[email protected] | ||
# - name: Move all artifacts to the current directory | ||
# run: ls -al && mv */* ./ && ls -al | ||
# - name: Upload all files | ||
# uses: actions/[email protected] | ||
# with: | ||
# name: all | ||
# path: ./* | ||
# - name: Remove all files | ||
# run: ls -al && rm -rf ./* |
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 |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
if: github.event.inputs.git-ref != '' | ||
with: | ||
ref: ${{ github.event.inputs.git-ref }} | ||
ref: ${{ github.event.inputs.git-ref }} | ||
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS | ||
submodules: recursive | ||
|
||
|
@@ -65,6 +65,7 @@ jobs: | |
uses: actions/[email protected] | ||
if: always() # Always run even if the workflow is canceled manually or due to overtime. | ||
with: | ||
name: ${{ matrix.solver }}-${{ matrix.ikind }}-${{ matrix.testdim }} | ||
path: ${{ env.TEST_DIR }}/prima/fortran/tests/test.${{ matrix.solver }}/log/*.log | ||
|
||
- name: Remove the test data | ||
|