Skip to content

ci cmake

ci cmake #22

Workflow file for this run

name: build
permissions: write-all
on: push
jobs:
build:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
version:
- '1.10'
os:
- windows-2022
- ubuntu-20.04
- macos-12
- macos-14
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- run: |
cmake -B build -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON
# Upload as release asset
- uses: vimtor/[email protected]
with:
files: build/madnlp_c--0.1.0
recursive: true
dest: foo.zip
- uses: actions/[email protected]
with:
name: madnlp-jl${{ matrix.version}}-${{ matrix.os }}-${{ matrix.arch }}
path: foo.zip
- name: Inject slug/short variables
uses: rlespinasse/[email protected]
- name: Upload files to a GitHub release
uses: svenstaro/[email protected]
with:
overwrite: true
tag: nightly-${{ env.GITHUB_REF_SLUG }}
file: foo.zip
asset_name: madnlp-jl${{ matrix.version}}-${{ matrix.os }}-${{ matrix.arch }}.zip
prerelease: true
repo_token: ${{ secrets.GITHUB_TOKEN }}