Skip to content

Commit

Permalink
just make all-rvi list without being includes since it isn't working
Browse files Browse the repository at this point in the history
  • Loading branch information
kbroch-rivosinc committed Nov 6, 2024
1 parent bf2f76e commit ff42d13
Show file tree
Hide file tree
Showing 3 changed files with 351 additions and 14 deletions.
10 changes: 4 additions & 6 deletions projects/rvi-repo-manifest/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,14 @@ ORGS_XML := $(addsuffix .xml, $(ORGS))

.PHONY: build-xml build-all-rvi-orgs-xml

default: build-all-rvi-orgs-xml
default: build-xml $(ALL_ORGS_XML)

build-xml:
$(MAKE) $(ORGS_XML)

build-all-rvi-orgs-xml: build-xml
@echo '<?xml version="1.0" encoding="UTF-8"?>' > $(BUILD_DIR)/$(ALL_ORGS_XML)
@echo '<manifest>' >> $(BUILD_DIR)/$(ALL_ORGS_XML)
@for item in $(ORGS_XML); do echo " <include name=\"$$item\" />" >> $(BUILD_DIR)/$(ALL_ORGS_XML); done
@echo '</manifest>' >> $(BUILD_DIR)/$(ALL_ORGS_XML)
all-orgs-xml:
$(TOOL) $(BUILD_DIR)/$(ALL_ORGS_XML) $(ORGS)
cp _common.xml $(BUILD_DIR)/.

%.xml:
$(TOOL) $(BUILD_DIR)/$@ $*
Expand Down
2 changes: 1 addition & 1 deletion projects/rvi-repo-manifest/generate-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ xml_header='<?xml version="1.0" encoding="UTF-8"?>
echo "$xml_header" > "$output_file"

# Loop through each organization
for org in "${org_list[@]}"; do
for org in $org_list; do
echo "Fetching repositories for organization: $org"

# Get list of repositories for the organization
Expand Down
Loading

0 comments on commit ff42d13

Please sign in to comment.