Skip to content

Commit

Permalink
added PkgEval-debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Dec 22, 2024
1 parent c785f3c commit c8adee8
Show file tree
Hide file tree
Showing 2 changed files with 418 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/Eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
julia-arch: [x64]

steps:
# Required by PkgEval.jl as xvfb runs into issues with ubuntu 24. See ci.yml workflow of PkgEval.jl repo
- name: "Allow unprivileged user namespaces"
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -51,8 +55,12 @@ jobs:
- name: "Run PkgEval"
run: |
git clone https://github.com/JuliaCI/PkgEval.jl.git
cp -rf test/PkgEvalDbg/* PkgEval.jl
ls -a -l PkgEval.jl/src
julia --project=. -e '
import Pkg;
Pkg.instantiate();
Pkg.add(path="./PkgEval.jl")'
Pkg.develop(path="./PkgEval.jl")'
julia --project=. ./test/eval.jl
Loading

0 comments on commit c8adee8

Please sign in to comment.