Run examples separately and build all JLL versions #119
Workflow file for this run
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: test | ||
on: | ||
- push | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
buildjll: | ||
name: Build JLL | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: '1.8' | ||
arch: x64 | ||
- uses: julia-actions/cache@v1 | ||
- name: Build JLLs | ||
env: | ||
BINARYBUILDER_RUNNER: privileged | ||
BINARYBUILDER_USE_SQUASHFS: true | ||
BINARYBUILDER_AUTOMATIC_APPLE: true | ||
run: | | ||
cd .ci | ||
julia --project -e "using Pkg; Pkg.instantiate()" | ||
julia --project build_tarballs.jl --verbose | ||
- name: Upload JLL artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: jlqml-binaries | ||
path: .ci/products | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | ||
needs: buildjll | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.6' | ||
- '1.9' | ||
- 'nightly' | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
- windows-latest | ||
arch: | ||
- x64 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.version }} | ||
# Mesa install copied from https://github.com/microsoft/OpticSim.jl | ||
- name: Install Mesa (Windows only) | ||
if: runner.os == 'Windows' | ||
shell: cmd | ||
working-directory: ${{ steps.setup-julia.outputs.julia-bindir }} | ||
run: | | ||
curl.exe -L --output mesa.7z --url https://github.com/pal1000/mesa-dist-win/releases/download/21.3.5/mesa3d-21.3.5-release-msvc.7z | ||
"C:\Program Files\7-Zip\7z.exe" x mesa.7z | ||
mklink opengl32.dll "x64\opengl32.dll" | ||
mklink libglapi.dll "x64\libglapi.dll" | ||
- uses: julia-actions/cache@v1 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- name: Download built jlqml artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: jlqml-binaries | ||
- name: Dev jlqml_jll | ||
run: | | ||
julia --project -e "using Pkg; Pkg.develop(\"jlqml_jll\"); import jlqml_jll; jlqml_jll.dev_jll(); Pkg.add(\"CodecZlib\")" | ||
julia --project .ci/override-jll.jl | ||
- name: install-xfvb | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get install xvfb libxkbcommon-x11-0 | ||
- name: test-linux | ||
if: runner.os == 'Linux' | ||
run: xvfb-run --auto-servernum julia --color=yes --check-bounds=yes --project -e 'using Pkg; Pkg.test(coverage=true)' | ||
env: | ||
XDG_RUNTIME_DIR: /tmp/runtime-runner | ||
- name: test-win-mac | ||
if: runner.os != 'Linux' | ||
uses: julia-actions/julia-runtest@v1 | ||
- name: examples-linux | ||
if: runner.os == 'Linux' | ||
run: xvfb-run --auto-servernum julia --project test/runexamples.jl | ||
env: | ||
XDG_RUNTIME_DIR: /tmp/runtime-runner | ||
continue-on-error: true | ||
- name: examples-win-mac | ||
if: runner.os != 'Linux' | ||
julia --project test/runexamples.jl | ||
continue-on-error: true | ||
- uses: julia-actions/julia-processcoverage@v1 | ||
env: | ||
DISABLE_AMEND_COVERAGE_FROM_SRC: yes | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
file: ./lcov.info | ||
fail_ci_if_error: false | ||
- uses: domluna/JuliaFormatter-action@master | ||
with: | ||
args: -v . | ||
continue-on-error: true |