fix build

This commit is contained in:
jiacai 2022-09-25 22:59:42 +08:00
parent fccd3f2101
commit f689a6151d

View File

@ -5,8 +5,8 @@ steps:
image: gcc:latest image: gcc:latest
commands: commands:
- echo "*****hello*****" - echo "*****hello*****"
- gcc hello.cpp -o hello && ./hello - g++ hello.cpp -o hello && ./hello
- cd class || exit - cd class || exit
- echo "*****construct*****" - echo "*****construct*****"
- gcc construct.cpp -o construct && ./construct - g++ construct.cpp -o construct && ./construct