cron #188
nightly-test.yml
on: schedule
prerequisites
/
prerequisites
1m 16s
Matrix: build_sdk / build_sdk
Matrix: build_provider / build_provider
Matrix: test
Annotations
2 errors and 1 warning
Unexpected file modified:
sdk/python/descope_pulumi/_utilities.py#L1
File modified:
@@ -89,12 +89,16 @@ def _get_semver_version():
elif pep440_version.pre_tag == 'rc':
prerelease = f"rc.{pep440_version.pre}"
elif pep440_version.dev is not None:
+ # PEP440 has explicit support for dev builds, while semver encodes them as "prerelease" versions. To bridge
+ # between the two, we convert our dev build version into a prerelease tag. This matches what all of our other
+ # packages do when constructing their own semver string.
prerelease = f"dev.{pep440_version.dev}"
+ elif pep440_version.local is not None:
+ # PEP440 only allows a small set of prerelease tags, so when converting an arbitrary prerelease,
+ # PypiVersion in /pkg/codegen/python/utilities.go converts it to a local version. Therefore, we need to
+ # do the reverse conversion here and set the local version as the prerelease tag.
+ prerelease = pep440_version.local
- # The only significant difference between PEP440 and semver as it pertains to us is that PEP440 has explicit support
- # for dev builds, while semver encodes them as "prerelease" versions. In order to bridge between the two, we convert
- # our dev build version into a prerelease tag. This matches what all of our other packages do when constructing
- # their own semver string.
return SemverVersion(major=major, minor=minor, patch=patch, prerelease=prerelease)
|
build_sdk / build_sdk (python)
Unexpected changes detected: 1. See file annotations for details.
|
prerequisites / prerequisites
No files were found with the provided path: provider/cmd/pulumi-resource-descope/schema-embed.json. No artifacts will be uploaded.
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
descope-provider.tar.gz
|
56.4 MB |
|
dotnet-sdk.tar.gz
|
783 KB |
|
go-sdk.tar.gz
|
70.9 KB |
|
nodejs-sdk.tar.gz
|
23.8 MB |
|
pulumi-resource-descope-v0.2.0-alpha.1740151448+05e4ecb-darwin-amd64.tar.gz
|
26.3 MB |
|
pulumi-resource-descope-v0.2.0-alpha.1740151448+05e4ecb-darwin-arm64.tar.gz
|
25.1 MB |
|
pulumi-resource-descope-v0.2.0-alpha.1740151448+05e4ecb-linux-amd64.tar.gz
|
26.3 MB |
|
pulumi-resource-descope-v0.2.0-alpha.1740151448+05e4ecb-linux-arm64.tar.gz
|
24.6 MB |
|
pulumi-resource-descope-v0.2.0-alpha.1740151448+05e4ecb-windows-amd64.tar.gz
|
26.8 MB |
|