Skip to content

Commit

Permalink
Add pkgeval (ThummeTo#20)
Browse files Browse the repository at this point in the history
* Add pkgeval as action

* Bug fix
  • Loading branch information
stoljarjo authored Mar 27, 2023
1 parent 5a28822 commit cf36da3
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/Eval.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Run PkgEval

on:
workflow_dispatch:
pull_request:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
strategy:
# Don't cancel in-progress jobs if any matrix job fails
fail-fast: false
matrix:
julia-version: ['1'] # "1" automatically expands to the latest stable 1.x release of Julia
julia-arch: [x64]

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repository
uses: actions/checkout@v2

# Set up Julia
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
id: version

# Set up cache
- name: "Set up cache"
uses: actions/cache@v2
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 }}-
# Build package
- name: "Build package"
uses: julia-actions/julia-buildpkg@v1

# Run PkgEval
- name: "Run PkgEval"
run: |
git clone https://github.com/JuliaCI/PkgEval.jl.git
julia --project=. -e '
import Pkg;
Pkg.instantiate();
Pkg.add(path="./PkgEval.jl")'
julia --project=. ./test/eval.jl
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[*FMIBuild.jl*](https://github.com/ThummeTo/FMIBuild.jl) provides the build-commands for the Julia package [*FMIExport.jl*](https://github.com/ThummeTo/FMIExport.jl).

[![Run Tests](https://github.com/ThummeTo/FMIBuild.jl/actions/workflows/Test.yml/badge.svg)](https://github.com/ThummeTo/FMIBuild.jl/actions/workflows/Test.yml)
[![Run PkgEval](https://github.com/ThummeTo/FMIBuild.jl/actions/workflows/Eval.yml/badge.svg)](https://github.com/ThummeTo/FMIBuild.jl/actions/workflows/Eval.yml)
[![Coverage](https://codecov.io/gh/ThummeTo/FMIBuild.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/ThummeTo/FMIBuild.jl)

## How can I use FMIBuild.jl?
Expand Down
15 changes: 15 additions & 0 deletions test/eval.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using PkgEval
using FMIBuild

config = Configuration(; julia="1.8");

package = Package(; name="FMIBuild");

@info "PkgEval"
result = evaluate([config], [package])

@info "Result"
println(result)

@info "Log"
println(result.log)

0 comments on commit cf36da3

Please sign in to comment.