Skip to content

sponsors: Scraping Bee is a new Silver sponsor #1742

sponsors: Scraping Bee is a new Silver sponsor

sponsors: Scraping Bee is a new Silver sponsor #1742

Workflow file for this run

# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
#
# SPDX-License-Identifier: curl
name: make
'on':
push:
branches:
- master
- '*/ci'
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions: {}
jobs:
build:
name: 'build'
runs-on: ubuntu-latest
steps:
- name: install prereqs
run: sudo apt-get -o Dpkg::Use-Pty=0 install pandoc libcgi-pm-perl
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: clone the source repo
run: git clone --depth=1 https://github.com/curl/curl.git cvssource
- name: build the docs in the source repo
run: |
cd cvssource
autoreconf -fi
./configure --without-ssl --without-libpsl
make -C docs
- name: install fcpp
run: |
git clone https://github.com/bagder/fcpp.git
cd fcpp
make install
- name: install roffit
run: |
git clone https://github.com/bagder/roffit.git
cd roffit
install -Dm0755 roffit /usr/local/bin/roffit
- name: bootstrap
run: ./bootstrap.sh
- name: make
run: make
- name: navcheck
run: make navcheck