CI #3633
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: | |
push: | |
branches: | |
- senpai | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" # daily | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ">= 0" | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
default: true | |
override: true | |
- run: |- | |
make lint | |
build: | |
strategy: | |
matrix: | |
jobs: | |
- runner: ubuntu-latest | |
triple: aarch64-unknown-linux-gnu | |
- runner: ubuntu-latest | |
triple: aarch64-unknown-linux-musl | |
- runner: ubuntu-latest | |
triple: x86_64-pc-windows-gnu | |
- runner: ubuntu-latest | |
triple: x86_64-unknown-linux-gnu | |
- runner: ubuntu-latest | |
triple: x86_64-unknown-linux-musl | |
- runner: macos-latest | |
triple: aarch64-apple-darwin | |
- runner: macos-latest | |
triple: x86_64-apple-darwin | |
- runner: windows-latest | |
triple: aarch64-pc-windows-msvc | |
- runner: windows-latest | |
triple: x86_64-pc-windows-msvc | |
runs-on: ${{ matrix.jobs.runner }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ">= 0" | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
default: true | |
override: true | |
- run: |- | |
make deps | |
- run: |- | |
make release TRIPLE=${{ matrix.jobs.triple }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.jobs.triple }}.zip | |
path: artifacts/${{ matrix.jobs.triple }}.zip | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.jobs.triple }}.deb | |
path: artifacts/${{ matrix.jobs.triple }}.deb | |
arts: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
path: ./arts/ | |
install_macos: | |
runs-on: macos-latest | |
steps: | |
- run: |- | |
brew install ms-jpq/sad/sad | |
- run: |- | |
brew list -1 |