2024-10-16 22:00 UTC+0200 Aleksander Czajczynski (hb fki.pl) #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu 64-bit | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repository: alcz/harbour | |
path: harbour | |
- name: Install dependencies | |
run: | | |
sudo apt install libcurl4-openssl-dev libssl-dev gcc | |
sudo cp -r /usr/include/x86_64-linux-gnu/curl /usr/include | |
- name: Compile harbour | |
run: | | |
cd harbour | |
export HB_WITH_PCRE=local | |
make |