Skip to content

Commit

Permalink
feat: implement artifact_builder submodule
Browse files Browse the repository at this point in the history
Signed-off-by: Emanuel Calvo <[email protected]>
  • Loading branch information
3manuek committed Jun 18, 2023
1 parent 1afbf6c commit 9d3c4a2
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 153 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2

uses: actions/checkout@v3
with:
submodules: recursive
- name: Git Submodule Update
run: |
git submodule update --remote --recursive
- name: setup python
uses: actions/setup-python@v4
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout the repository content
uses: actions/checkout@v3
with:
submodules: recursive

- name: Git Submodule Update
run: |
git submodule update --remote --recursive
- name: setup python
uses: actions/setup-python@v4
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "artifact_builder"]
path = artifact_builder
url = [email protected]:viadb/artifact_builder.git
1 change: 1 addition & 0 deletions artifact_builder
Submodule artifact_builder added at 14fa77
2 changes: 0 additions & 2 deletions artifact_builder/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions artifact_builder/Dockerfile

This file was deleted.

28 changes: 0 additions & 28 deletions artifact_builder/README.md

This file was deleted.

Empty file removed artifact_builder/__init__.py
Empty file.
53 changes: 0 additions & 53 deletions artifact_builder/__main__.py

This file was deleted.

23 changes: 0 additions & 23 deletions artifact_builder/filemap.py

This file was deleted.

37 changes: 0 additions & 37 deletions artifact_builder/indexer.py

This file was deleted.

1 change: 0 additions & 1 deletion artifact_builder/requirements.txt

This file was deleted.

0 comments on commit 9d3c4a2

Please sign in to comment.