Skip to content

Commit e94dfad

Browse files
Try manually specifying pkgs to build
1 parent 74395f8 commit e94dfad

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
pip install -r requirements.txt
3535
- name: Build assets
3636
run: |
37-
CIRCUP_DIRS="$(paste -sd ',' circuitpython_support.txt | sed 's/,/, /g')" |
38-
echo "Build assets dirs: ${CIRCUP_DIRS}" |
39-
circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location qwiic/drivers --library_depth 1 --package_folder_prefix "${CIRCUP_DIRS}"
37+
# CIRCUP_DIRS="$(paste -sd ',' circuitpython_support.txt | sed 's/,/, /g')" |
38+
# echo "Build assets dirs: ${CIRCUP_DIRS}" |
39+
circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location qwiic/drivers --library_depth 1 --package_folder_prefix "qwiic_alphanumeric, qwiic_serlcd"
4040
- name: Upload Release Assets
4141
uses: shogo82148/actions-upload-release-asset@v1
4242
with:

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ set -e
2828

2929
# This script gets executed in "test" steps for non-release builds. See the "Build assets" step in release.yml for the build of actual release artifacts
3030
# Gather the package submods that are supported in CircuitPython and create a comma-separated string to pass to circuitpython-build-bundles
31-
CIRCUP_DIRS="\"$(paste -sd ',' circuitpython_support.txt | sed 's/,/, /g')\""
32-
echo "FOUND CIRCUP DIRS: ${CIRCUP_DIRS}"
33-
circuitpython-build-bundles --filename_prefix qwiic-py --library_location qwiic/drivers --library_depth 1 --package_folder_prefix "$CIRCUP_DIRS"
31+
# CIRCUP_DIRS="$(paste -sd ',' circuitpython_support.txt | sed 's/,/, /g')"
32+
# echo "FOUND CIRCUP DIRS: ${CIRCUP_DIRS}"
33+
circuitpython-build-bundles --filename_prefix qwiic-py --library_location qwiic/drivers --library_depth 1 --package_folder_prefix "qwiic_alphanumeric, qwiic_serlcd"

0 commit comments

Comments
 (0)