From e140a83fad29cdece0eed57de45b5f85cf82528c Mon Sep 17 00:00:00 2001 From: Lealem Amedie Date: Tue, 11 Jul 2023 11:27:45 -0600 Subject: [PATCH] Add curl gh actions test --- .github/workflows/curl.yml | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/curl.yml diff --git a/.github/workflows/curl.yml b/.github/workflows/curl.yml new file mode 100644 index 0000000000..0dbb65ff94 --- /dev/null +++ b/.github/workflows/curl.yml @@ -0,0 +1,40 @@ +name: CURL Test + +on: + push: + branches: [ '*' ] + pull_request: + branches: [ '*' ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - name: autogen + run: ./autogen.sh + - name: configure + run: ./configure --enable-all + - name: make + run: make + - name: install + run: sudo make install + - uses: actions/checkout@master + with: + repository: curl/curl + path: curl + - name: curl buildconf + working-directory: ./curl + run: ./buildconf + - name: curl configure + working-directory: ./curl + run: ./configure --with-wolfssl + - name: curl make + working-directory: ./curl + run: make + - name: curl unit tests + working-directory: ./curl + run: make test +