Skip to content

changed julia version to 1.10.3; fixed error with nix shell not findi… #41

changed julia version to 1.10.3; fixed error with nix shell not findi…

changed julia version to 1.10.3; fixed error with nix shell not findi… #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags: ["*"]
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- "1" # automatically expands to the latest stable 1.x release of Julia
os:
- ubuntu-latest
# - windows-latest # not working because of step "Install xvfb"
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
env:
PYTHON: "" # https://discourse.julialang.org/t/matplotlib-dependency-for-documenter-jl-in-github-actions/51597
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- name: Install xvfb
# installing xvfb for "simulating" a screen (download drivers) to avoid
# errors with makie
# see https://github.com/MakieOrg/Makie.jl/blob/master/.github/workflows/glmakie.yaml
run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev
- uses: julia-actions/julia-buildpkg@v1
# - uses: julia-actions/julia-runtest@v1
# see https://github.com/MakieOrg/Makie.jl/blob/master/.github/workflows/glmakie.yaml
- name: Run the tests
id: referencetests
run: >
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --color=yes --project=. -e 'using Pkg; Pkg.test("MNN", coverage=true)'
- name: Process coverage results
# https://stackoverflow.com/a/58859404
if: '!cancelled()'
uses: julia-actions/julia-processcoverage@v1
- name: Upload coverage reports to Codecov
if: '!cancelled()'
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Alexander-Reimer/Simulation-of-MNNs
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
env:
PYTHON: ""
with:
version: "1"
# see https://github.com/MakieOrg/Makie.jl/blob/master/.github/workflows/glmakie.yaml
- name: Install xvfb
run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev
- run: echo "DISPLAY=:0" >> $GITHUB_ENV
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
- uses: julia-actions/julia-docdeploy@v1
with:
# https://github.com/julia-actions/julia-docdeploy#prefixing-the-julia-command
prefix: xvfb-run
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
xvfb-run julia --project=docs -e '
using Documenter: DocMeta, doctest
using MNN
DocMeta.setdocmeta!(MNN, :DocTestSetup, :(using MNN); recursive=true)
doctest(MNN)'