diff --git a/.github/workflows/Eval.yml b/.github/workflows/Eval.yml deleted file mode 100644 index a958e47..0000000 --- a/.github/workflows/Eval.yml +++ /dev/null @@ -1,58 +0,0 @@ -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 diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index bb41484..88dbc1e 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -13,12 +13,9 @@ jobs: fail-fast: false matrix: julia-version: ['1.6', '1'] # "1" automatically expands to the latest stable 1.x release of Julia - julia-arch: [x64, x86] - os: [ubuntu-latest, windows-latest, macOS-latest] + julia-arch: [x64] + os: [ubuntu-latest, windows-latest] experimental: [false] - exclude: - - os: macOS-latest - julia-arch: x86 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it diff --git a/Project.toml b/Project.toml index c75bae6..4ebdece 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "FMISensitivity" uuid = "3e748fe5-cd7f-4615-8419-3159287187d2" authors = ["TT ", "LM "] -version = "0.1.0" +version = "0.1.1" [deps] FMICore = "8af89139-c281-408e-bce2-3005eb87462f" @@ -11,5 +11,5 @@ SciMLSensitivity = "1ed8b502-d754-442c-8d5d-10ac956f44a1" [compat] FMICore = "0.18.0" ForwardDiffChainRules = "0.2.0" -SciMLSensitivity = "7.40.0" +SciMLSensitivity = "7.41.0" julia = "1.6"