Skip to content

Commit c37099d

Browse files
authored
Merge pull request #50 from Herb-AI/dev
Dev
2 parents df40145 + d4d3573 commit c37099d

File tree

53,297 files changed

+234679
-263043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53,297 files changed

+234679
-263043
lines changed

.github/workflows/CI.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
tags: ['*']
7+
pull_request:
8+
concurrency:
9+
# Skip intermediate builds: always.
10+
# Cancel intermediate builds: only if it is a pull request build.
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
13+
jobs:
14+
test:
15+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
version:
21+
- '1.8'
22+
- '1'
23+
- 'nightly'
24+
os:
25+
- ubuntu-latest
26+
arch:
27+
- x64
28+
steps:
29+
- uses: actions/checkout@v3
30+
- uses: julia-actions/setup-julia@v1
31+
with:
32+
version: ${{ matrix.version }}
33+
arch: ${{ matrix.arch }}
34+
- uses: julia-actions/cache@v1
35+
- uses: julia-actions/julia-buildpkg@v1
36+
- uses: julia-actions/julia-runtest@v1
37+
- uses: julia-actions/julia-processcoverage@v1
38+
- uses: codecov/codecov-action@v4
39+
with:
40+
token: ${{ secrets.CODECOV_TOKEN }}
41+
slug: Herb-AI/HerbBenchmarks.jl
42+
files: lcov.info
43+
fail_ci_if_error: false

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
23+
jobs:
24+
TagBot:
25+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: JuliaRegistries/TagBot@v1
29+
with:
30+
token: ${{ secrets.GITHUB_TOKEN }}
31+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ docs/site/
2222
# committed for packages, but should be committed for applications that require a static
2323
# environment.
2424
Manifest.toml
25+
26+
# Ignore large data files
27+
*_large.jl

Project.toml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11
name = "HerbBenchmarks"
22
uuid = "eadf8b74-d38a-4b1a-a063-8d36e493d376"
3-
authors = ["jaapjong <J.deJong-18@student.tudelft.nl>"]
4-
version = "0.1.0"
3+
authors = ["jaapjong <J.deJong-18@student.tudelft.nl>", "Tilman Hinnerichs <t.r.hinnerichs@tudelft.nl>", "Sebastijan Dumancic <s.dumancic@tudelft.nl>"]
4+
version = "0.2.1"
5+
6+
[deps]
7+
FilePathsBase = "48062228-2e41-5def-b9a4-89aafe57970f"
8+
HerbCore = "2b23ba43-8213-43cb-b5ea-38c12b45bd45"
9+
HerbGrammar = "4ef9e186-2fe5-4b24-8de7-9f7291f24af7"
10+
HerbSpecification = "6d54aada-062f-46d8-85cf-a1ceaf058a06"
11+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
12+
MLStyle = "d8e11817-5142-5d16-987a-aa16d5891078"
13+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
14+
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
15+
SExpressions = "eaa8e424-c5f6-11e8-1b3d-d576ba0eee97"
16+
17+
[compat]
18+
HerbCore = "^0.3.0"
19+
HerbGrammar = "^0.3.0"
20+
HerbSpecification = "^0.1.0"
21+
julia = "^1.8"
22+
23+
[extras]
24+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
25+
26+
[targets]
27+
test = ["Test"]

README.md

Lines changed: 39 additions & 1 deletion

e1-robots/Data_generation.jl

Lines changed: 0 additions & 55 deletions
This file was deleted.

e1-robots/README.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

e1-robots/Robotparser.jl

Lines changed: 0 additions & 18 deletions
This file was deleted.

e1-robots/data/10-0-0.pl

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)