Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions libtool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,19 @@ update:
enabled: true
release-monitor:
identifier: 1741

test:
environment:
contents:
packages:
- build-base
pipeline:
- name: Compile and Execute Test
runs: |
cat <<'EOF' > hello.c
#include <stdio.h>
int main() { puts("Hello, world!"); return 0; }
EOF
libtool --mode=compile --tag=CC gcc -c hello.c -o hello.o
libtool --mode=link --tag=CC gcc hello.o -o hello
./hello | grep -q "Hello, world!"