Skip to content

Commit 77e11b6

Browse files
author
Ivan
authored
Merge pull request #34 from advancedwebdeveloper/advancedwebdeveloper-patch-32
Fixing my mistake in incorrectly named jobs
2 parents 7d77c0b + a08dd70 commit 77e11b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/llvm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66
branches: [ main ]
77
jobs:
8-
default-compiler: #in sense of CMake's identification - gollvm is indeed Clang oriented
8+
clang9_build: #in sense of CMake's identification - gollvm is indeed Clang oriented
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
@@ -29,7 +29,7 @@ jobs:
2929
run: cd $GITHUB_WORKSPACE/clang_test_cpu_features && git clone https://github.com/llvm/llvm-project.git && cd llvm-project/llvm/tools && git clone https://go.googlesource.com/gollvm && cd gollvm && git clone https://go.googlesource.com/gofrontend && cd libgo && git clone https://github.com/libffi/libffi.git && git clone https://github.com/ianlancetaylor/libbacktrace.git
3030
- name: Compiling & linking gollvm
3131
run: cd $GITHUB_WORKSPACE/clang_test_cpu_features && mkdir build_release && cd build_release && cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD=X86 -G Ninja ../llvm-project/llvm && ninja -j16 gollvm && ninja GoBackendCoreTests && ./tools/gollvm/unittests/BackendCore/GoBackendCoreTests && sudo ninja install-gollvm
32-
clang9-build: #in sense of CMake's identification - gollvm is indeed Clang oriented
32+
gcc_compat_build: #in sense of CMake's identification - gollvm is indeed Clang oriented
3333
runs-on: ubuntu-latest
3434
steps:
3535
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)