cmake: fix library name #703
Workflow file for this run
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: sw | |
on: [push, pull_request] | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: egorpugin/sw-action@master | |
- run: ./sw build -static -shared -config d,r | |
linux: | |
runs-on: ubuntu-22.04 | |
container: fedora:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: prepare | |
run: | | |
sudo dnf -y update | |
sudo dnf -y install cmake which g++ clang clang-tools-extra lld | |
- uses: egorpugin/sw-action@master | |
- run: ./sw build -static -shared -config d,r | |
macos: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: egorpugin/sw-action@master | |
- name: install | |
run: brew install flex bison gcc | |
#- run: sudo xcode-select --switch /Library/Developer/CommandLineTools | |
- name: build | |
run: | | |
export PATH="/usr/local/opt/flex/bin:$PATH" | |
export PATH="/usr/local/opt/bison/bin:$PATH" | |
export PATH="/usr/local/opt/gcc/bin:$PATH" | |
./sw build -static -shared -config d,r -compiler gcc-13 | |