try using xcode 15 #256
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: Release Builds | |
on: push | |
env: | |
SME_DEPS_COMMON_VERSION: "2024.01.23" | |
DUNE_COPASI_VERSION: "master" | |
jobs: | |
linux: | |
name: Linux | |
runs-on: ubuntu-20.04 | |
env: | |
INSTALL_PREFIX: "/opt/smelibs" | |
SUDOCMD: "sudo" | |
OS_TARGET: "linux" | |
CC: "clang" | |
CXX: "clang++" | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Add llvm repo for clang 17 & install | |
run: | | |
sudo wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - | |
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" | |
sudo apt update -yy | |
sudo apt install -yy clang-17 | |
- name: Set clang version | |
run: | | |
sudo update-alternatives --remove-all clang || echo "nothing to remove" | |
sudo update-alternatives --remove-all clang++ || echo "nothing to remove" | |
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-17 100 | |
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-17 100 | |
- name: Disable system blas/lapack | |
run: | | |
sudo rm /usr/lib/x86_64-linux-gnu/libblas* | |
sudo rm /usr/lib/x86_64-linux-gnu/liblapack* | |
- uses: actions/checkout@v4 | |
- name: Build script | |
run: ./build.sh | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-linux | |
path: ./artefacts/* | |
macos: | |
name: MacOS | |
runs-on: macos-13 | |
env: | |
INSTALL_PREFIX: "/opt/smelibs" | |
SUDOCMD: "sudo" | |
MACOSX_DEPLOYMENT_TARGET: "11" | |
OS_TARGET: "osx" | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "15" | |
- name: Build script | |
run: ./build.sh | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-macos | |
path: ./artefacts/* | |
win64: | |
name: Windows 64-bit | |
runs-on: windows-2022 | |
env: | |
INSTALL_PREFIX: "/c/smelibs" | |
SUDOCMD: "" | |
OS_TARGET: "win64-mingw" | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: UCRT64 | |
update: true | |
install: mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-cmake make git dos2unix | |
- name: Build script | |
run: ./build.sh | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-win64 | |
path: ./artefacts/* | |
release: | |
name: Upload Binaries to GitHub Release | |
needs: [linux, macos, win64] | |
runs-on: ubuntu-latest | |
# upload binaries to github release if commit is tagged | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/') | |
permissions: | |
contents: write | |
steps: | |
- uses: dev-drprasad/[email protected] | |
with: | |
repo: spatial-model-editor/sme_deps | |
keep_latest: 5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: artifacts-* | |
merge-multiple: true | |
path: binaries | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: binaries/* | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true |