Skip to content

CompatHelper: bump compat for Symbolics to 6 for package test, (keep existing compat) #750

CompatHelper: bump compat for Symbolics to 6 for package test, (keep existing compat)

CompatHelper: bump compat for Symbolics to 6 for package test, (keep existing compat) #750

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ github.event_name }}
strategy:
fail-fast: false
matrix:
version:
- '1'
- '1.6'
os:
- ubuntu-latest
include:
- version: '1'
os: macOS-latest
# Do not run tests on Windows since they often result in weird
# Python errors, e.g.,
# `AttributeError: module 'brotli' has no attribute 'error'`
# in https://github.com/ranocha/BSeries.jl/pull/145
# - version: '1'
# os: windows-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
- name: Fix weird Conda.jl/PyCall.jl/SymPy.jl build error
env:
PYTHON: ""
shell: julia --color=yes {0}
run: |
using Pkg
Pkg.activate("test")
println("Try instantiating the test environment")
try
Pkg.instantiate()
println("Successfully instantiated the test environment")
catch e
display(e)
end
println("Try building SymPy")
try
Pkg.build("SymPy")
import SymPy
println("Successfully built SymPy")
catch e
display(e)
end
- uses: julia-actions/julia-runtest@v1
env:
PYTHON: ""
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
# The standard setup of Coveralls is just annoying for parallel builds, see, e.g.,
# https://github.com/trixi-framework/Trixi.jl/issues/691
# https://github.com/coverallsapp/github-action/issues/47
# https://github.com/coverallsapp/github-action/issues/67
# This standard setup is reproduced below for completeness.
# - uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# flag-name: run-${{ matrix.version }}-${{ github.run_id }}
# parallel: true
# path-to-lcov: ./lcov.info
# Instead, we use a more tedious approach:
# - Store all individual coverage files as artifacts (directly below)
# - Download and merge individual coverage reports in another step
# - Upload only the merged coverage report to Coveralls
- shell: bash
run: |
cp ./lcov.info ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info
- uses: actions/upload-artifact@v4
with:
name: lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}
path: ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info
finish:
needs: test
runs-on: ubuntu-latest
steps:
# The standard setup of Coveralls is just annoying for parallel builds, see, e.g.,
# https://github.com/trixi-framework/Trixi.jl/issues/691
# https://github.com/coverallsapp/github-action/issues/47
# https://github.com/coverallsapp/github-action/issues/67
# This standard setup is reproduced below for completeness.
# - name: Coveralls Finished
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# parallel-finished: true
# Instead, we use the more tedious approach described above.
# At first, we check out the repository and download all artifacts
# (and list files for debugging).
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- run: ls -R
# Next, we merge the individual coverage files and upload
# the combined results to Coveralls.
- name: Merge lcov files using Coverage.jl
shell: julia --color=yes {0}
run: |
using Pkg
Pkg.activate(temp=true)
Pkg.add("Coverage")
using Coverage
coverage = LCOV.readfolder(".")
for cov in coverage
cov.filename = replace(cov.filename, "\\" => "/")
end
filter!(c -> basename(c.filename) != "precompile.jl", coverage)
coverage = merge_coverage_counts(coverage)
@show covered_lines, total_lines = get_summary(coverage)
LCOV.writefile("./lcov.info", coverage)
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
# Upload merged coverage data as artifact for debugging
- uses: actions/upload-artifact@v4
with:
name: lcov
path: ./lcov.info
# That's it
- run: echo "Finished testing BSeries"