Skip to content

Commit

Permalink
Merge pull request #2899 from JuliaReach/schillic/revise
Browse files Browse the repository at this point in the history
Revise scripts
  • Loading branch information
schillic authored Nov 14, 2021
2 parents ef55ff0 + 98a4a05 commit c02e747
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 68 deletions.
32 changes: 0 additions & 32 deletions .appveyor.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CompatHelper
on:
schedule:
- cron: '00 00 * * *'
workflow_dispatch:

jobs:
CompatHelper:
Expand All @@ -16,4 +17,5 @@ jobs:
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
2 changes: 2 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: TagBot

on:
issue_comment:
types:
- created
workflow_dispatch:

jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Expand Down
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,17 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.3', '1.6']
julia-version: ['1.6']
julia-arch: [x64]
os: [ubuntu-latest]
os: [ubuntu-latest, windows-latest]
include:
- julia-version: '1.3' # test on oldest supported version
julia-arch: x64
os: ubuntu-latest
# - julia-version: 'nightly' # test on latest version
# julia-arch: x64
# os: ubuntu-latest
# experimental: true
env:
JULIA_PKG_SERVER: ''
steps:
Expand All @@ -35,15 +43,17 @@ jobs:
- name: Install dependencies
run: |
julia --project --color=yes -e 'using Pkg;
include("deps/build_private.jl");
include(joinpath("deps", "build_private.jl"));
Pkg.build(verbose=true)'
shell: bash
- name: Build
run: |
julia --project --color=yes --check-bounds=yes -e 'using Pkg;
Pkg.test(coverage=true);
Pkg.add("Coverage");
using Coverage;
Codecov.submit(process_folder())'
shell: bash
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
GKSwstype: nul # fix for Plots with GR backend
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # authentication with SSH deploy key
run: julia --project=docs/ docs/make.jl
27 changes: 0 additions & 27 deletions CITATION.cff

This file was deleted.

10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# LazySets.jl
## *Scalable Symbolic-Numeric Set Computations*

| **Documentation** |**Build Status** |**Community** |**Version-specific Citation** | **License** |
| **Documentation** |**Status** |**Community** |**Version-specific Citation** | **License** |
|:-----------------:|:---------------:|:------------:|:----------------------------:|:-----------:|
| [![docs-dev][dev-img]][dev-url] |[![CI][ci-img]][ci-url] [![codecov][cov-img]][cov-url]|[![gitter][chat-img]][chat-url]|[![zenodo][doi-img]][doi-url] |[![license][lic-img]][lic-url]|

Expand All @@ -18,10 +18,14 @@
[lic-img]: https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000
[lic-url]: https://github.com/JuliaReach/LazySets.jl/blob/master/LICENSE

## ❓ Introduction

The following article showcases the basic functionality, highlighting some of the key design choices:

> Forets, Marcelo, and Christian Schilling. *LazySets. jl: Scalable Symbolic-Numeric Set Computations.* [arXiv preprint arXiv:2110.01711](https://arxiv.org/abs/2110.01711) (2021).
See [below](#how-to-cite) for how to cite it.

## 🎯 Resources

- [Manual](http://juliareach.github.io/LazySets.jl/dev/)
Expand All @@ -41,7 +45,7 @@ pkg> add LazySets

See the [Getting started](https://juliareach.github.io/LazySets.jl/dev/man/getting_started/) section of the manual for other options.

## :blue_book: Publications
## 📘 Publications

This library has been applied in a number of scientic works.

Expand Down Expand Up @@ -91,7 +95,7 @@ The articles appear in reverse chronological order.

</details>

## :earth_africa: Ecosystem
## 🗺 Ecosystem

Several projects in the Julia technical computing stack use this library.

Expand Down
1 change: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
ENV["GKSwstype"] = "100" # set 'GR environment' to 'no output' (for Travis CI)
using Documenter, LazySets
import Polyhedra, Optim, Expokit, TaylorModels, Distributions, MiniQhull, Symbolics

Expand Down

0 comments on commit c02e747

Please sign in to comment.