Skip to content
Snippets Groups Projects
Verified Commit d387d9ac authored by David Hoese's avatar David Hoese
Browse files

Try building hello statically

parent b9d399d4
No related branches found
No related tags found
No related merge requests found
Pipeline #11546 passed
......@@ -36,7 +36,7 @@ build_hello_world:
- ssec_shared
image: gcc:9
script:
- gcc -o hello src/hello_world.c
- gcc -static -o hello src/hello_world.c
artifacts:
paths:
- hello
......@@ -54,7 +54,7 @@ tests:
- echo ${PWD}
- export PATH="$PATH:${PWD}"
- echo $PATH
- hello
- ./hello
- pip install pytest pytest-cov
- pytest --cov=. test.py
coverage: '/TOTAL.*\s+(\d+%)$/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment