From 98eea002210c3d62516d16ab6f3024fdffc7ccb3 Mon Sep 17 00:00:00 2001 From: Mehmet Hakan Satman Date: Sun, 28 Jul 2024 16:40:04 +0300 Subject: [PATCH 01/10] Create generate-pdf.yml --- .github/workflows/generate-pdf.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/generate-pdf.yml diff --git a/.github/workflows/generate-pdf.yml b/.github/workflows/generate-pdf.yml new file mode 100644 index 0000000..1d7dc44 --- /dev/null +++ b/.github/workflows/generate-pdf.yml @@ -0,0 +1,24 @@ +name: Draft PDF +on: [push] + +jobs: + paper: + runs-on: ubuntu-latest + name: Paper Draft + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build draft PDF + uses: openjournals/openjournals-draft-action@master + with: + journal: joss + # This should be the path to the paper within your repo. + paper-path: paper.md + - name: Upload + uses: actions/upload-artifact@v4 + with: + name: paper + # This is the output path where Pandoc will write the compiled + # PDF. Note, this should be the same directory as the input + # paper.md + path: paper.pdf From 45b5da9db8b364bae5bb425dd7cfc85906b668ef Mon Sep 17 00:00:00 2001 From: Mehmet Hakan Satman Date: Sun, 28 Jul 2024 16:41:18 +0300 Subject: [PATCH 02/10] Update generate-pdf.yml --- .github/workflows/generate-pdf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate-pdf.yml b/.github/workflows/generate-pdf.yml index 1d7dc44..956f9b7 100644 --- a/.github/workflows/generate-pdf.yml +++ b/.github/workflows/generate-pdf.yml @@ -21,4 +21,4 @@ jobs: # This is the output path where Pandoc will write the compiled # PDF. Note, this should be the same directory as the input # paper.md - path: paper.pdf + path: paper/paper.pdf From af16f30558c530cc9810361add0dc932278c7fa4 Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Sun, 28 Jul 2024 16:43:19 +0300 Subject: [PATCH 03/10] remove pdf maker --- .github/workflows/generate-pdf.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/generate-pdf.yml diff --git a/.github/workflows/generate-pdf.yml b/.github/workflows/generate-pdf.yml deleted file mode 100644 index 956f9b7..0000000 --- a/.github/workflows/generate-pdf.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Draft PDF -on: [push] - -jobs: - paper: - runs-on: ubuntu-latest - name: Paper Draft - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Build draft PDF - uses: openjournals/openjournals-draft-action@master - with: - journal: joss - # This should be the path to the paper within your repo. - paper-path: paper.md - - name: Upload - uses: actions/upload-artifact@v4 - with: - name: paper - # This is the output path where Pandoc will write the compiled - # PDF. Note, this should be the same directory as the input - # paper.md - path: paper/paper.pdf From 948db48224bfe8d9eefa7992c0c6d9633d51126e Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Tue, 6 Aug 2024 19:10:26 +0300 Subject: [PATCH 04/10] update gitignore --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a077ef1..ce80c7a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ *.db *.venv *.vscode -*.DS_Store \ No newline at end of file +*.DS_Store +./bin +./lib From e162c8ec33b2b9414592723a47ec1fc582402753 Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Tue, 6 Aug 2024 19:11:15 +0300 Subject: [PATCH 05/10] add paper compilation worflow for JOSS --- .github/workflows/paper-workflow.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/paper-workflow.yml diff --git a/.github/workflows/paper-workflow.yml b/.github/workflows/paper-workflow.yml new file mode 100644 index 0000000..57fb41b --- /dev/null +++ b/.github/workflows/paper-workflow.yml @@ -0,0 +1,20 @@ +name: Compile JOSS Paper +on: [push] + +jobs: + paper: + runs-on: ubuntu-latest + name: Paper Draft + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Build draft PDF + uses: openjournals/openjournals-draft-action@master + with: + journal: joss + paper-path: paper/paper.md + - name: Upload + uses: actions/upload-artifact@v1 + with: + name: paper + path: paper/paper.pdf \ No newline at end of file From 964c5dda7ae3f6392648a1ef827e38c76f7ff810 Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Tue, 6 Aug 2024 19:18:45 +0300 Subject: [PATCH 06/10] update gitignore --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ce80c7a..81e458d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,5 @@ *.venv *.vscode *.DS_Store -./bin -./lib +./bin/** +./lib/** From a79939cd822e62de0c55179ab49839f0cdb96c21 Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Tue, 6 Aug 2024 19:23:37 +0300 Subject: [PATCH 07/10] rm workflow --- .github/workflows/paper-workflow.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/paper-workflow.yml diff --git a/.github/workflows/paper-workflow.yml b/.github/workflows/paper-workflow.yml deleted file mode 100644 index 57fb41b..0000000 --- a/.github/workflows/paper-workflow.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Compile JOSS Paper -on: [push] - -jobs: - paper: - runs-on: ubuntu-latest - name: Paper Draft - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Build draft PDF - uses: openjournals/openjournals-draft-action@master - with: - journal: joss - paper-path: paper/paper.md - - name: Upload - uses: actions/upload-artifact@v1 - with: - name: paper - path: paper/paper.pdf \ No newline at end of file From 31c37a37fc36e0b3320f5d38c979f5c375a06820 Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Tue, 6 Aug 2024 19:24:09 +0300 Subject: [PATCH 08/10] update gitignore --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 81e458d..10e2669 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,6 @@ *.venv *.vscode *.DS_Store -./bin/** -./lib/** +bin/** */ +lib/** */ +include/** */ From 36d3b88649415eb07d83ce7385e9fa91a9b6bfd2 Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Tue, 6 Aug 2024 19:24:28 +0300 Subject: [PATCH 09/10] update gitignore --- .gitignore | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 10e2669..013c1b0 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ *.venv *.vscode *.DS_Store -bin/** */ -lib/** */ -include/** */ +bin/** +lib/** +include/** +share/** + From 6b147337aa5ad00e3c5102f5e68c3e3fbd3270cc Mon Sep 17 00:00:00 2001 From: "mhsatman@gmail.com" Date: Tue, 6 Aug 2024 19:25:17 +0300 Subject: [PATCH 10/10] update gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 013c1b0..b25fb3c 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,7 @@ bin/** lib/** include/** share/** +lib64/** +__pycache__/** +.pytest_cache/**