Update version to 0.3.0 #57
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: 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 |