update pgsql config #516
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: build-swoole-cli-windows-cygwin | |
on: [ push, pull_request ] | |
jobs: | |
windows-cygwin: | |
if: 0 | |
runs-on: windows-latest | |
steps: | |
- name: Prepare git | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
env | |
ipconfig | |
uname -a | |
pwd | |
- uses: actions/checkout@v3 | |
- name: Prepare submodule | |
run: | | |
ipconfig /all | |
# git submodule update --init | |
- name: Cache cygwin packages | |
id: cache-cygwin | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-cygwin-packages | |
with: | |
path: C:/cygwin-packages | |
key: ${{ runner.os }}-build-${{ env.cache-name }} | |
- name: Install deps | |
uses: cygwin/cygwin-install-action@v4 | |
with: | |
platform: x86_64 | |
packages: make git curl wget tar libtool re2c bison gcc-g++ autoconf automake openssl libpcre2-devel libssl-devel libcurl-devel libxml2-devel libxslt-devel libgmp-devel ImageMagick libpng-devel libjpeg-devel libfreetype-devel libwebp-devel libsqlite3-devel zlib-devel libbz2-devel liblz4-devel liblzma-devel libzip-devel libicu-devel libonig-devel libcares-devel libsodium-devel libyaml-devel libMagick-devel libzstd-devel libbrotli-devel libreadline-devel libintl-devel libpq-devel libssh2-devel libidn2-devel gettext-devel coreutils openssl-devel zip unzip libpq5 libpq-devel | |
- name: Install re2c | |
run: | | |
bash ./sapi/scripts/cygwin/install-re2c.sh | |
- name: Prepare | |
run: | | |
# git config --global --add safe.directory /cygdrive/d/a/swoole-cli/swoole-cli | |
# git submodule update --init | |
bash ./sapi/scripts/cygwin/cygwin-config-ext.sh | |
- name: Configure | |
run: | | |
bash ./sapi/scripts/cygwin/cygwin-config.sh | |
- name: Build | |
run: | | |
bash ./sapi/scripts/cygwin/cygwin-build.sh | |
- name: Show Build Result | |
run: | | |
./bin/swoole-cli -v | |
./bin/swoole-cli -m | |
./bin/swoole-cli --ri pdo_pgsql | |
./bin/swoole-cli --ri swoole | |
- name: Archive | |
run: | | |
bash ./sapi/scripts/cygwin/cygwin-archive.sh | |
- name: production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cygwin-swoole-cli-dist | |
path: | | |
bin/swoole-cli.exe | |
- name: gh release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: swoole-cli-*-cygwin-x64.zip | |
draft: true | |
prerelease: true |