-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create wiki.yml Allow the creation of wiki files automatically for documentation purposes * list docs for compiling * runs python step * Changed to using relative imports * fix wiki error * setup protobuf inside the action * adding init.py * try installing via an action * the action does not work for us * adding logging * added new step * maybe dont copy everything * local copying * Update wiki.yml * Update wiki.yml * trying something * checking for protoc * sequential execution * sequential execution (2) * success condition + full path names * small syntax fix? * smaller fix * fix? * fix? (2) * Print dirs for debug. * Duplicate works! Sequential execution for Dependencies. * Duplicate didn't solve the problem. Checking logs w/o it. * Install wheel before protobuf setup. * Split-up for debugging. * Bunch of prints * Catch exception? * Full fix: added shared library refresh to install-protoc.sh, which supposedly fixes the .libs directory problem. NOTE: Currently not skipping df_methods/summary.md to see if anything uploads. * Using the output folder; reformatting files for proper markdown. * Final touches (hopefully). Co-authored-by: Matthew Mage <[email protected]> Co-authored-by: DivvyCr <[email protected]>
- Loading branch information
1 parent
f8515c3
commit ff1ab80
Showing
7 changed files
with
66 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Update and upload DataFrame information. | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.7' # Version range or exact version of a Python version to use, using SemVer's version range syntax | ||
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | ||
|
||
- name: Install/Update pip and wheel. | ||
run: | ||
python -m pip install --upgrade pip && | ||
pip install wheel | ||
|
||
- name: Set-up and install protobuf. | ||
run: chmod 777 ./_travis/install-protoc.sh && ./_travis/install-protoc.sh 2.6.1 | ||
|
||
- name: Install dependencies. | ||
run: pip install -r requirements.txt | ||
|
||
- name: Initialise. | ||
run: python init.py | ||
|
||
- name: Create document | ||
run: python -m carball.tests.docs.data_frame_docs | ||
|
||
- name: wiki-page-creator-action | ||
uses: Decathlon/[email protected] | ||
env: | ||
GH_PAT: ${{ secrets.GH_WIKI_EDIT_TOKEN }} | ||
ACTION_MAIL: [email protected] | ||
ACTION_NAME: saltie | ||
OWNER: SaltieRL | ||
REPO_NAME: carball | ||
MD_FOLDER: carball/tests/docs/ | ||
SKIP_MD: df_methods.md, df_summary.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters