-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from dianagudu/prerel
v0.6.0
- Loading branch information
Showing
13 changed files
with
155 additions
and
71 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.5.3 | ||
current_version = 0.6.0 | ||
commit = True | ||
tag = False | ||
|
||
|
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 |
---|---|---|
|
@@ -102,7 +102,8 @@ dockerised_all_packages: dockerised_deb_debian_buster\ | |
dockerised_rpm_centos_stream\ | ||
dockerised_rpm_rocky8.5\ | ||
dockerised_rpm_rocky8\ | ||
dockerised_rpm_opensuse15.3\ | ||
dockerised_rpm_opensuse15.4\ | ||
dockerised_rpm_opensuse15.5\ | ||
dockerised_rpm_opensuse_tumbleweed | ||
|
||
.PHONY: docker_images | ||
|
@@ -116,7 +117,8 @@ docker_images: docker_rocky8.5\ | |
docker_debian_bookworm\ | ||
docker_ubuntu_bionic\ | ||
docker_ubuntu_focal\ | ||
docker_opensuse15.3\ | ||
docker_opensuse15.4\ | ||
docker_opensuse15.5\ | ||
docker_opensuse_tumbleweed | ||
|
||
.PHONY: docker_debian_buster | ||
|
@@ -212,13 +214,20 @@ docker_rocky8: | |
"RUN yum install -y make rpm-build\n" \ | ||
"RUN dnf -y group install \"Development Tools\"\n" | \ | ||
docker build --tag rocky8 -f - . >> docker.log | ||
.PHONY: docker_opensuse15.3 | ||
docker_opensuse15.3: | ||
@echo -e "\nopensuse-15.3" | ||
@echo -e "FROM registry.opensuse.org/opensuse/leap:15.3\n"\ | ||
.PHONY: docker_opensuse15.4 | ||
docker_opensuse15.4: | ||
@echo -e "\nopensuse-15.4" | ||
@echo -e "FROM registry.opensuse.org/opensuse/leap:15.4\n"\ | ||
"RUN zypper -n install make rpm-build\n" \ | ||
"RUN zypper -n install -t pattern devel_C_C++" | \ | ||
docker build --tag opensuse15.3 -f - . >> docker.log | ||
docker build --tag opensuse15.4 -f - . >> docker.log | ||
.PHONY: docker_opensuse15.5 | ||
docker_opensuse15.5: | ||
@echo -e "\nopensuse-15.5" | ||
@echo -e "FROM registry.opensuse.org/opensuse/leap:15.5\n"\ | ||
"RUN zypper -n install make rpm-build\n" \ | ||
"RUN zypper -n install -t pattern devel_C_C++" | \ | ||
docker build --tag opensuse15.5 -f - . >> docker.log | ||
.PHONY: docker_opensuse_tumbleweed | ||
docker_opensuse_tumbleweed: | ||
@echo -e "\nopensuse_tumbleweed" | ||
|
@@ -238,7 +247,8 @@ docker_sle15: | |
docker_clean: | ||
docker image rm sle15 || true | ||
docker image rm opensuse_tumbleweed || true | ||
docker image rm opensuse15.3 || true | ||
docker image rm opensuse15.4 || true | ||
docker image rm opensuse15.5 || true | ||
docker image rm rocky8.5 || true | ||
docker image rm rocky8 || true | ||
docker image rm centos7 || true | ||
|
@@ -310,11 +320,17 @@ dockerised_rpm_rocky8: docker_rocky8 | |
@docker run --tty --rm -v ${DOCKER_BASE}:/home/build rocky8 \ | ||
/home/build/${PACKAGE}/build.sh ${PACKAGE} rocky8 ${PKG_NAME} > $@.log | ||
|
||
.PHONY: dockerised_rpm_opensuse15.3 | ||
dockerised_rpm_opensuse15.3: docker_opensuse15.3 | ||
.PHONY: dockerised_rpm_opensuse15.4 | ||
dockerised_rpm_opensuse15.4: docker_opensuse15.4 | ||
@echo "Writing build log to $@.log" | ||
@docker run --tty --rm -v ${DOCKER_BASE}:/home/build opensuse15.4 \ | ||
/home/build/${PACKAGE}/build.sh ${PACKAGE} opensuse15.4 ${PKG_NAME} > $@.log | ||
|
||
.PHONY: dockerised_rpm_opensuse15.5 | ||
dockerised_rpm_opensuse15.5: docker_opensuse15.5 | ||
@echo "Writing build log to $@.log" | ||
@docker run --tty --rm -v ${DOCKER_BASE}:/home/build opensuse15.3 \ | ||
/home/build/${PACKAGE}/build.sh ${PACKAGE} opensuse15.3 ${PKG_NAME} > $@.log | ||
@docker run --tty --rm -v ${DOCKER_BASE}:/home/build opensuse15.5 \ | ||
/home/build/${PACKAGE}/build.sh ${PACKAGE} opensuse15.5 ${PKG_NAME} > $@.log | ||
|
||
.PHONY: dockerised_rpm_opensuse_tumbleweed | ||
dockerised_rpm_opensuse_tumbleweed: docker_opensuse_tumbleweed | ||
|
@@ -341,7 +357,8 @@ publish-to-repo: | |
@scp ../results/debian_bookworm/* [email protected]:/var/www/debian/bookworm | ||
@scp ../results/ubuntu_bionic/* [email protected]:/var/www/ubuntu/bionic | ||
@scp ../results/ubuntu_focal/* [email protected]:/var/www/ubuntu/focal | ||
@scp ../results/opensuse15.3/* [email protected]:/var/www/suse/opensuse-leap-15.3 | ||
@scp ../results/opensuse15.4/* [email protected]:/var/www/suse/opensuse-leap-15.4 | ||
@scp ../results/opensuse15.5/* [email protected]:/var/www/suse/opensuse-leap-15.5 | ||
@scp ../results/opensuse_tumbleweed/* [email protected]:/var/www/suse/opensuse-tumbleweed | ||
#@scp ../results/sle15/* [email protected]:/var/www/suse/sle15 | ||
|
||
|
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 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 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 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 +1 @@ | ||
0.5.3 | ||
0.6.0 |
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 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 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 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,8 +1,10 @@ | ||
feudalAdapter>=0.5.3 | ||
flaat>=1.1.5 | ||
feudalAdapter>=0.6.0 | ||
flaat>=1.1.10 | ||
fastapi==0.* | ||
uvicorn[standard]==0.* | ||
gunicorn==20.* | ||
sqlitedict==2.* | ||
cryptography>=38.0.3 | ||
cryptography==41.* | ||
markdown==3.* | ||
pydantic-settings==2.* | ||
pydantic==2.* |
Oops, something went wrong.
83103f7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage for this commit
Coverage Report