-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change from git submodules to PDM for dependency management.
- Loading branch information
Showing
19 changed files
with
521 additions
and
75 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 |
---|---|---|
|
@@ -14,8 +14,9 @@ jobs: | |
- run: git fetch --prune --unshallow --no-recurse-submodules | ||
- uses: YosysHQ/setup-oss-cad-suite@v2 | ||
- uses: gregdavill/[email protected] | ||
- run: python3 -m pip install wheel construct meson ninja setuptools setuptools_scm Jinja2 | ||
- run: ./orbtrace_builder.py --platform orbtrace_mini --build | ||
- run: python3 -m pip install pdm meson ninja | ||
- run: pdm install | ||
- run: pdm run orbtrace_builder --platform orbtrace_mini --build | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: orbtrace_mini | ||
|
@@ -32,8 +33,9 @@ jobs: | |
- run: git fetch --prune --unshallow --no-recurse-submodules | ||
- uses: YosysHQ/setup-oss-cad-suite@v2 | ||
- uses: gregdavill/[email protected] | ||
- run: python3 -m pip install wheel construct meson ninja setuptools setuptools_scm Jinja2 | ||
- run: ./orbtrace_builder.py --platform orbtrace_mini --profile dfu --build | ||
- run: python3 -m pip install pdm meson ninja | ||
- run: pdm install | ||
- run: pdm run orbtrace_builder --platform orbtrace_mini --profile dfu --build | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: orbtrace_mini_dfu | ||
|
@@ -50,8 +52,9 @@ jobs: | |
- run: git fetch --prune --unshallow --no-recurse-submodules | ||
- uses: YosysHQ/setup-oss-cad-suite@v2 | ||
- uses: gregdavill/[email protected] | ||
- run: python3 -m pip install wheel construct meson ninja setuptools setuptools_scm Jinja2 | ||
- run: ./orbtrace_builder.py --platform orbtrace_mini --profile test --build | ||
- run: python3 -m pip install pdm meson ninja | ||
- run: pdm install | ||
- run: pdm run orbtrace_builder --platform orbtrace_mini --profile test --build | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: orbtrace_mini_test | ||
|
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 |
---|---|---|
|
@@ -21,3 +21,6 @@ tags | |
r | ||
.#* | ||
fp-info-cache | ||
/.venv/ | ||
/.pdm-build/ | ||
/.pdm-python |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Submodule amaranth
deleted from
a2f3c5
Submodule litehyperbus
deleted from
1cde46
Submodule litespi
deleted from
96de79
Submodule litex
deleted from
67cfca
Submodule litex-boards
deleted from
dd27a3
Submodule luna
deleted from
76d2ee
Submodule migen
deleted from
50934a
Submodule python-usb-protocol
deleted from
a98307
Submodule pythondata-cpu-vexriscv
deleted from
03d8c4
Submodule pythondata-software-compiler_rt
deleted from
fcb032
Submodule pythondata-software-picolibc
deleted from
a5e112
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import deps | ||
|
||
import os | ||
import argparse | ||
|
||
|
Oops, something went wrong.