diff --git a/.drone.yml b/.drone.yml index 70581d4..63f2eca 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,8 +5,8 @@ steps: image: gcc:latest commands: - echo "*****hello*****" - - gcc hello.cpp -o hello && ./hello + - g++ hello.cpp -o hello && ./hello - cd class || exit - echo "*****construct*****" - - gcc construct.cpp -o construct && ./construct + - g++ construct.cpp -o construct && ./construct