mingw #9
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-mac: | |
name: Build macOS | |
runs-on: maxos-11 | |
env: | |
MACOSX_DEPLOYMENT_TARGET: "10.15" | |
steps: | |
- name: download and extract | |
run: | | |
curl --output xerces-c-3.2.4.tar.gz https://dlcdn.apache.org/xerces/c/3/sources/xerces-c-3.2.4.tar.gz | |
tar xf xerces-c-3.2.4.tar.gz | |
- name: build | |
run: | | |
cd xerces-c-3.2.4 | |
./configure --disable-network --enable-transcoder-macosunicodeconverter --enable-xmlch-char16_t --enable-mutexmgr-standard CFLAGS="-arch x86_64 -arch arm64" CXXFLAGS="-arch x86_64 -arch arm64" | |
make -j4 | |
make DESTDIR=`pwd`/dist install | |
- name: package | |
run: | | |
cd xerces-c-3.2.4/dist/usr/local | |
zip ../../xerces-c-3.2.4-maxos-11.zip * | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: xerces-c-3.2.4-maxos-11.zip | |
path: xerces-c-3.2.4/dist/xerces-c-3.2.4-maxos-11.zip | |
if-no-files-found: error | |
build-linux: | |
name: Build linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: download and extract | |
run: | | |
curl --output xerces-c-3.2.4.tar.gz https://dlcdn.apache.org/xerces/c/3/sources/xerces-c-3.2.4.tar.gz | |
tar xf xerces-c-3.2.4.tar.gz | |
- name: build | |
run: | | |
cd xerces-c-3.2.4 | |
./configure --disable-network --enable-transcoder-iconv --enable-xmlch-char16_t --enable-mutexmgr-standard | |
make -j4 | |
make DESTDIR=`pwd`/dist install | |
- name: infos | |
run: | | |
ls -l xerces-c-3.2.4/dist/usr/local/lib/ | |
ldd xerces-c-3.2.4/dist/usr/local/lib/libxerces-c-3.2.so | |
- name: package | |
run: | | |
cd xerces-c-3.2.4/dist/usr/local | |
zip ../../xerces-c-3.2.4-linux-x64.zip * | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: xerces-c-3.2.4-linux-x64.zip | |
path: xerces-c-3.2.4/dist/xerces-c-3.2.4-linux-x64.zip | |
if-no-files-found: error | |
build-msvc: | |
name: Build Windows msvc | |
runs-on: windows-2019 | |
steps: | |
- name: download and extract | |
run: | | |
curl --output xerces-c-3.2.4.tar.gz https://dlcdn.apache.org/xerces/c/3/sources/xerces-c-3.2.4.tar.gz | |
tar xf xerces-c-3.2.4.tar.gz | |
- name: build | |
run: | | |
cd xerces-c-3.2.4 | |
cmake -Dnetwork:BOOL=OFF -Dtranscoder=windows -Dxmlch-type=char16_t -Dmutex-manager=standard | |
cmake --build . --config Release | |
cmake --build . --config Release --target install | |
- name: package | |
run: | | |
C:\"Program Files"\7-Zip\7z.exe a xerces-c-3.2.4-windows-msvc-x64.zip C:\"Program Files (x86)"\xerces-c\ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: xerces-c-3.2.4-windows-msvc-x64.zip | |
path: xerces-c-3.2.4-windows-msvc-x64.zip | |
if-no-files-found: error | |
build-mingw: | |
name: Build Windows mingw | |
runs-on: windows-2019 | |
steps: | |
- name: download and extract | |
run: | | |
curl --output xerces-c-3.2.4.tar.gz https://dlcdn.apache.org/xerces/c/3/sources/xerces-c-3.2.4.tar.gz | |
tar xf xerces-c-3.2.4.tar.gz | |
- name: build | |
run: | | |
cd xerces-c-3.2.4 | |
cmake -G "MinGW Makefiles" -Dnetwork:BOOL=OFF -Dtranscoder=windows -Dxmlch-type=char16_t -Dmutex-manager=standard | |
cmake --build . --config Release | |
cmake --build . --config Release --target install | |
- name: package | |
run: | | |
C:\"Program Files"\7-Zip\7z.exe a xerces-c-3.2.4-windows-mingw-x64.zip C:\"Program Files (x86)"\xerces-c\ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: xerces-c-3.2.4-windows-mingw-x64.zip | |
path: xerces-c-3.2.4-windows-mingw-x64.zip | |
if-no-files-found: error |