forked from conjure-cp/conjure-oxide
-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (64 loc) · 2.53 KB
/
essence-feature-stats.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: "tools/essence-feature-stats"
on:
push
env:
ESSENCE_DIR: "./EssenceCatalog"
CONJURE_DIR: "./conjure"
ESSENCE_EXAMPLES_REPO: "https://github.com/conjure-cp/EssenceCatalog.git"
CONJURE_REPO: "https://github.com/conjure-cp/conjure"
OUTPUT_PATH: "./web/static/index.html"
KEYWORD_BLOCKLIST: "mInfo,finds,givens,enumGivens,enumLettings,lettings,
unnameds,strategyQ,Auto,Interactive,strategyA,trailCompact,
nameGenState,nbExtraGivens,representations,representationsTree,
originalDomains,trailGeneralised,trailVerbose,trailRewrites,
mLanguage,language,version,mStatements,Name,Declaration"
jobs:
build:
name: "tools/essence-feature-stats: Build the tool and clone EssenceCatalog repo"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: pip install -r requirements.txt
working-directory: ./tools/essence-feature-usage-stats
- name: Run main.py to generate the table
run: python main.py
working-directory: ./tools/essence-feature-usage-stats
- name: Fix file permissions
run: chmod -v -R +rwx ./web/static
working-directory: ./tools/essence-feature-usage-stats
- name: Compress the GitHub Page directory into a tar archive
run: tar -czvf ~/archive.tar.gz ./web/static/*
working-directory: ./tools/essence-feature-usage-stats
- name: Configure GitHub Pages
uses: actions/configure-pages@v3
- name: Upload Tar Archive as a GitHub Pages artifact
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
path: ~/archive.tar.gz
deploy:
name: "tools/essence-feature-stats: Deploy the generated page"
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
with:
artifact_name: github-pages