Update harbour_darwin_osx.yml #179
This file contains 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: Harbour for Windows 64 using MinGW | |
on: | |
push: | |
watch: | |
types: [started] | |
jobs: | |
build: | |
runs-on: windows-latest | |
if: github.actor == github.event.repository.owner.login | |
steps: | |
- name: Checkout harbour/core repo | |
uses: actions/checkout@v2 | |
with: | |
repository: harbour/core | |
path: harbour | |
- name: Install dependencies | |
run: | | |
choco install openssl | |
copy-Item 'c:\Program Files\OpenSSL-Win64' -destination 'c:\OpenSSL-Win64' -recurse | |
choco install curl | |
(Get-Content -path harbour\contrib\hbssl\hbssl.hbp) -replace '/../inc32','' | Set-Content -path harbour\contrib\hbssl\hbssl.hbp | |
- name: Compile Harbour | |
shell: cmd | |
run: | | |
cd harbour | |
set HB_BUILD_MODE=c | |
set HB_USER_PRGFLAGS=-l- | |
set HB_BUILD_CONTRIBS= | |
set HB_WITH_OPENSSL=c:/OpenSSL-Win64/include/ | |
set HB_WITH_CURL=c:/ProgramData/chocolatey/lib/curl/tools/curl-7.70.0-win64-mingw/include/ | |
set HB_OPENSSL_STATIC=yes | |
set HB_STATIC_OPENSSL=yes | |
set HB_STATIC_CURL=yes | |
set HB_STATIC_OPENSSL=yes | |
set HB_STATIC_CURL=yes | |
set HB_COMPILER=mingw64 | |
SET HB_BUILD_CONTRIB_DYN=no | |
SET HB_BUILD_DYN=no | |
win-make.exe | |
- name: Create output folders | |
shell: cmd | |
run: | | |
mkdir output | |
mkdir output\bin | |
copy harbour\bin\win\mingw64\*.exe output\bin | |
mkdir output\lib | |
copy harbour\lib\win\mingw64\*.a output\lib | |
mkdir output\include | |
copy harbour\include output\include | |
- name: Get current time | |
uses: srfrnk/current-time@master | |
id: current-time | |
with: | |
format: YYYY_MM_DD | |
- name: Upload Harbour to artifact | |
env: | |
TIME: "${{ steps.current-time.outputs.formattedTime }}" | |
uses: actions/upload-artifact@v2 | |
with: | |
name: harbour_win64_mingw_${{ env.TIME }} | |
path: output |