DiagOp not working with @view on linear operator #12
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: Breakage | |
# Based on: https://github.com/JuliaSmoothOptimizers/LinearOperators.jl/blob/main/.github/workflows/Breakage.yml | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
break: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
pkg: [ | |
"JuliaImageRecon/RegularizedLeastSquares.jl", | |
"MagneticResonanceImaging/MRIReco.jl" | |
] | |
pkgversion: [latest, stable] | |
steps: | |
- uses: actions/checkout@v2 | |
# Install Julia | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: 1 | |
arch: x64 | |
- uses: actions/cache@v1 | |
env: | |
cache-name: cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
restore-keys: | | |
${{ runner.os }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-test- | |
${{ runner.os }}- | |
- uses: julia-actions/julia-buildpkg@v1 | |
# Breakage test | |
- name: 'Breakage of ${{ matrix.pkg }}, ${{ matrix.pkgversion }} version' | |
env: | |
URL: ${{ matrix.pkg }} | |
VERSION: ${{ matrix.pkgversion }} | |
run: | | |
set -v | |
mkdir -p ./pr | |
echo "${{ github.event.number }}" > ./pr/NR | |
git clone https://github.com/$URL | |
export PKG=$(echo $URL | cut -f2 -d/) | |
cd $PKG | |
if [ $VERSION == "stable" ]; then | |
TAG=$(git tag -l "v*" --sort=-creatordate | head -n1) | |
if [ -z "$TAG" ]; then | |
TAG="no_tag" | |
else | |
git checkout $TAG | |
fi | |
else | |
TAG=$VERSION | |
fi | |
export TAG | |
julia -e 'using Pkg; | |
PKG, TAG, VERSION = ENV["PKG"], ENV["TAG"], ENV["VERSION"] | |
joburl = joinpath(ENV["GITHUB_SERVER_URL"], ENV["GITHUB_REPOSITORY"], "actions/runs", ENV["GITHUB_RUN_ID"]) | |
TAG == "no_tag" && error("Not tag for $VERSION") | |
pkg"activate ."; | |
pkg"instantiate"; | |
pkg"dev ../"; | |
if TAG == "latest" | |
global TAG = chomp(read(`git rev-parse --short HEAD`, String)) | |
end | |
pkg"build"; | |
pkg"test";' |