removed useless comment #6
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 MacOS | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- os: "macos-13" | |
cxx-compiler: clang++ | |
c-compiler: clang | |
compiler-version: default | |
build-type: Release | |
#- os: "macos-latest" | |
#cxx-compiler: g++ | |
#c-compiler: gcc | |
#compiler-version: 11 | |
#build-type: RelWithDebInfo | |
runs-on: ${{ matrix.config.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- name: Cache curl | |
uses: actions/cache@v3 | |
with: | |
path: lib/curl-8.2.1 | |
key: ${{ runner.os }}-${{ matrix.config.cxx-compiler }}-${{ matrix.config.compiler-version }}-curl-8.2.1-1 | |
- name: Cache antlr | |
uses: actions/cache@v3 | |
with: | |
path: lib/antlr | |
key: ${{ runner.os }}-${{ matrix.config.cxx-compiler }}-${{ matrix.config.compiler-version }}-antlr-4.13.1 | |
- name: Cache boost | |
uses: actions/cache@v3 | |
with: | |
path: lib/boost_1_83_0 | |
key: ${{ runner.os }}-${{ matrix.config.cxx-compiler }}-${{ matrix.config.compiler-version }}-boost-1.83.0-1 | |
- name: Install Dependencies | |
shell: pwsh | |
run: | | |
brew install pkg-config | |
brew reinstall [email protected] | |
brew install ninja [email protected] glib-openssl mysql-client mysql-connector-c++ openssl@3 libssh2 | |
# Update the Homebrew-installed shared library binaries with the other architecture (amd64) via `bew-universalize`. | |
./bin-build/brew-universalize [email protected] glib-openssl mysql-client mysql-connector-c++ openssl@3 libssh2 | |
echo "PKG_CONFIG_PATH=/usr/local/opt/[email protected]/lib/pkgconfig:/usr/local/opt/mysql-client/lib/pkgconfig:$Env:PKG_CONFIG_PATH" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
#env: | |
#HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: '1' | |
- name: Set CXX and CC | |
shell: pwsh | |
run: | | |
$cxx_compiler = "${{ matrix.config.cxx-compiler }}" | |
$c_compiler = "${{ matrix.config.c-compiler }}" | |
$version = '${{ matrix.config.compiler-version }}' | |
if ($version -ne 'default') { | |
$cxx_compiler = "$cxx_compiler-$version" | |
$c_compiler = "$c_compiler-$version" | |
} | |
echo "CXX=$cxx_compiler" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
echo "CC=$c_compiler" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
echo "MACOSX_DEPLOYMENT_TARGET=13.3" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- name: Config | |
run: | | |
cd bin-build | |
cmake .. -G Ninja -DREUSE_PCH=1 -DCMAKE_BUILD_TYPE=${{ matrix.config.build-type }} -DCMAKE_OSX_ARCHITECTURES='arm64;x86_64' | |
- name: Build | |
run: | | |
cd bin-build | |
cmake --build . --config ${{ matrix.config.build-type }} -- -j 2 | |
- name: Test (EScript) | |
run: | | |
cd bin-build | |
cmake --build . --config ${{ matrix.config.build-type }} --target test_escript | |
- name: Test (Shard Fixtures) | |
run: | | |
cd bin-build | |
cmake --build . --config ${{ matrix.config.build-type }} --target test_pol_fixture | |
- name: Test (UnitTests) | |
run: | | |
cd bin-build | |
cmake --build . --config ${{ matrix.config.build-type }} --target unittest_pol | |
- name: Test (Shard) | |
run: | | |
cd bin-build | |
cmake --build . --config ${{ matrix.config.build-type }} --target test_pol_only | |
- name: Upload shard test log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Testlog-${{ runner.os }}-${{ matrix.config.cxx-compiler }} | |
path: bin-build/coretest/log/pol.log | |
- name: Create Artefact | |
run: | | |
cd bin-build | |
cmake --build . --config ${{ matrix.config.build-type }} --target package | |
cd ../bin | |
mkdir release | |
mv *.zip release | |
- name: Upload Artefact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Nightly-${{ runner.os }}-${{ matrix.config.cxx-compiler }} | |
path: bin/release | |
notify_on_failure: | |
needs: build | |
runs-on: "ubuntu-latest" | |
if: failure() | |
steps: | |
- name: Discord notification failure | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
uses: turleypol/actions-status-discord@master | |
with: | |
status: failure | |
job: Building (MacOS) | |
notify_on_success: | |
needs: build | |
runs-on: "ubuntu-latest" | |
if: success() | |
steps: | |
- name: Discord notification success | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
uses: turleypol/actions-status-discord@master | |
with: | |
status: success | |
job: Building (MacOS) | |
notify_on_cancel: | |
needs: build | |
runs-on: "ubuntu-latest" | |
if: cancelled() | |
steps: | |
- name: Discord notification cancelled | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
uses: turleypol/actions-status-discord@master | |
with: | |
status: cancelled | |
job: Building (MacOS) |