sw #970
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: | |
schedule: | |
# every day | |
- cron: 0 0 * * * | |
jobs: | |
windows: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: egorpugin/sw-action@master | |
- run: ./sw -static build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sw | |
path: .sw/out/**/*.exe | |
linux: | |
runs-on: ubuntu-22.04 | |
container: fedora:latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare | |
run: | | |
sudo dnf -y update | |
sudo dnf -y install flex bison cmake which gcc clang clang-tools-extra lld git | |
- uses: egorpugin/sw-action@master | |
- run: ./sw -static build -compiler gcc | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sw | |
path: .sw/out | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: egorpugin/sw-action@master | |
- name: install | |
run: | | |
brew update | |
brew install flex bison gcc llvm | |
- name: build | |
run: | | |
export PATH="/opt/homebrew/opt/bison/bin:$PATH" | |
export PATH="/opt/homebrew/opt/flex/bin:$PATH" | |
export PATH="/opt/homebrew/opt/llvm/bin:$PATH" | |
export PATH="/opt/homebrew/opt/gcc/bin:$PATH" | |
./sw -static build -compiler appleclang | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sw | |
path: .sw/out |