Skip to content

Commit

Permalink
[Minor][Doc] Remove the invalid link (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
acezen authored Mar 9, 2023
1 parent b124402 commit 1f2516a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
GraphAr-on-ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,13 @@ jobs:
with:
node-version: 16

- uses: actions/checkout@v2
- name: Checkout Code
uses: actions/checkout@v3
with:
repository: ${{github.event.pull_request.head.repo.full_name}}
ref: ${{github.event.pull_request.head.ref}}
submodules: true
fetch-depth: 0

- name: Leave the comment on pull request when started
if: ${{ github.event_name == 'pull_request_target' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
GraphAr-spark:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down
2 changes: 0 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ A good branch name would be (where issue #42 is the ticket you're working on):
Get the test suite running
^^^^^^^^^^^^^^^^^^^^^^^^^^

Make sure your system has the required dependencies for GraphAr. See the `GraphAr Dependencies`_ for more details.

Now initialize the submodules of GraphAr:

.. code:: shell
Expand Down
File renamed without changes.
10 changes: 4 additions & 6 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,13 @@ clean:

.PHONY: cpp-apidoc
cpp-apidoc:
pushd $(ROOTDIR)/cpp/apidoc && \
$(DOXYGEN) Doxyfile && \
popd
cd $(ROOTDIR)/cpp/apidoc && \
$(DOXYGEN) Doxyfile

.PHONY: spark-apidoc
spark-apidoc:
pushd $(ROOTDIR)/spark && \
mvn scala:doc && \
popd
cd $(ROOTDIR)/spark && \
mvn scala:doc

.PHONY: html
html: cpp-apidoc spark-apidoc
Expand Down

0 comments on commit 1f2516a

Please sign in to comment.