Skip to content

Commit 783969c

Browse files
committed
last
1 parent abcb8fd commit 783969c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build-release.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ jobs:
3131
- name: Install Eigen
3232
run: sudo apt update && sudo apt install -y libeigen3-dev
3333

34-
- name: Build C++ project # c++ 컴파일
34+
- name: Install GCC 11 and build C++ project
3535
run: |
36+
sudo apt update
37+
sudo apt install -y g++-11
3638
mkdir -p assignment_4/output_cpp
37-
g++ -I /usr/include/eigen3 assignment_4/c++/*.cpp -o assignment_4/output_cpp/cpp_program
39+
g++-11 -I /usr/include/eigen3 assignment_4/c++/*.cpp -o assignment_4/output_cpp/cpp_program
3840
chmod +x assignment_4/output_cpp/cpp_program
39-
40-
41+
4142
- name: Build C# project
4243
run: |
4344
dotnet new console -o assignment_4/csharp --force

0 commit comments

Comments
 (0)