Skip to content

Commit e140a83

Browse files
author
Lealem Amedie
committed
Add curl gh actions test
1 parent 5fbe319 commit e140a83

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.github/workflows/curl.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: CURL Test
2+
3+
on:
4+
push:
5+
branches: [ '*' ]
6+
pull_request:
7+
branches: [ '*' ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@master
16+
- name: autogen
17+
run: ./autogen.sh
18+
- name: configure
19+
run: ./configure --enable-all
20+
- name: make
21+
run: make
22+
- name: install
23+
run: sudo make install
24+
- uses: actions/checkout@master
25+
with:
26+
repository: curl/curl
27+
path: curl
28+
- name: curl buildconf
29+
working-directory: ./curl
30+
run: ./buildconf
31+
- name: curl configure
32+
working-directory: ./curl
33+
run: ./configure --with-wolfssl
34+
- name: curl make
35+
working-directory: ./curl
36+
run: make
37+
- name: curl unit tests
38+
working-directory: ./curl
39+
run: make test
40+

0 commit comments

Comments
 (0)