fix cipackages.yml #4
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 release packages and perform basic sanity tests | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
mkrelease_win: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Install packages | |
run: sudo apt-get update && sudo apt-get -y install dos2unix | |
- | |
name: Build release package | |
run: | | |
export POCO_BASE=`pwd` | |
export PATH=$POCO_BASE/release/script:$PATH | |
mkrel -c unix2dos | |
mkrel -c unix2dos all | |
- | |
name: Copy artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: windows-archives | |
path: releases/poco*.zip | |
overwrite: true | |
retention-days: 1 | |
mkrelease: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Build release package | |
run: | | |
export POCO_BASE=`pwd` | |
export PATH=$POCO_BASE/release/script:$PATH | |
mkrel | |
mkrel all | |
- | |
name: Copy artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: posix-archives | |
path: releases/poco*.tar.gz | |
overwrite: true | |
retention-days: 1 | |
linux-gcc-make-mkrelease: | |
runs-on: ubuntu-22.04 | |
needs: mkrelease | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: posix-archives | |
- run: sudo apt -y update && sudo apt -y install libssl-dev unixodbc-dev redis-server libmysqlclient-dev | |
- run: rm poco-*-all.tar.gz | |
- run: mkdir poco && cd poco && tar xfz ../poco-*.tar.gz --strip-components=1 | |
- run: cd poco && ./configure --everything && make all -s -j`nproc` |