Skip to content

Julia v1.10

Julia v1.10 #54

Workflow file for this run

name: Dev
on:
pull_request:
push:
branches: '*'
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- {name: '1.8', version: '1.8'}
- {name: '1.9', version: '1.9'}
- {name: '1.10', version: '1.10'}
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version.name }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- name: Install BinaryBuilder
run: julia -e 'using Pkg; Pkg.add("BinaryBuilder")'
- name: Build casacorecxx
run: julia build_tarballs.jl --deploy=local x86_64-linux-gnu-cxx11-julia_version+${{ matrix.version.version }}
- name: Add casacorecxx
run: julia --project=. -e 'using Pkg; Pkg.develop("casacorecxx_jll")'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1