git @ Cat's Eye Technologies stringie / semaphore-setup
Guess you need to checkout first. Wait CRLF EOLs what is this Chris Pressey 3 years ago
1 changed file(s) with 17 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 # For more C information and examples, see
1 # https://docs.semaphoreci.com/article/95-language-c
2 version: v1.0
3 name: Hello Semaphore
4 agent:
5 machine:
6 type: e1-standard-2
7 os_image: ubuntu1804
8 blocks:
9 - name: C example
10 task:
11 jobs:
12 - name: Compile and run C code
13 commands:
14 - (cd src && make)
15 - ./bin/stringie from eg/hello.ul
0 # For more C information and examples, see
1 # https://docs.semaphoreci.com/article/95-language-c
2 version: v1.0
3 name: Hello Semaphore
4 agent:
5 machine:
6 type: e1-standard-2
7 os_image: ubuntu1804
8 blocks:
9 - name: C example
10 task:
11 jobs:
12 - name: Compile and run C code
13 commands:
14 - checkout
15 - (cd src && make)
16 - ./bin/stringie from eg/hello.ul