Skip to content

Commit 6f0748e

Browse files
committed
[workflows] Update path to Flang build directory
The following Flang commit has changed the default location of the Flang build directory, resulting in CI failures in the classic-flang-llvm-project: flang-compiler/flang@054bde3 This patch updates the path name in the CI workflows.
1 parent 8c96cb5 commit 6f0748e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/flang-arm64-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
- name: Copy llvm-lit
6363
run: |
6464
cd ${{ env.build_path }}/flang
65-
cp ${{ env.build_path }}/classic-flang-llvm-project/build/bin/llvm-lit build/bin/.
65+
cp ${{ env.build_path }}/classic-flang-llvm-project/build/bin/llvm-lit build/flang/bin/
6666
6767
- name: Test flang
6868
run: |
69-
cd ${{ env.build_path }}/flang/build
69+
cd ${{ env.build_path }}/flang/build/flang
7070
make check-all

.github/workflows/flang-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
- name: Copy llvm-lit
7474
run: |
7575
cd ../../flang
76-
cp ../classic-flang-llvm-project/classic-flang-llvm-project/build/bin/llvm-lit build/bin/.
76+
cp ../classic-flang-llvm-project/classic-flang-llvm-project/build/bin/llvm-lit build/flang/bin/
7777
7878
- name: Test flang
7979
run: |
80-
cd ../../flang/build
80+
cd ../../flang/build/flang
8181
make check-all

0 commit comments

Comments
 (0)