-
Notifications
You must be signed in to change notification settings - Fork 51
Restructure versions to a single point of truth #610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
JAB1305
wants to merge
10
commits into
eclipse-basyx:develop
Choose a base branch
from
rwth-iat:feat/single-point-of-truth
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
108fda0
/etc/scripts: Restructure to a single point of truth
JAB1305 292b5b9
.github/actions/load-version: Fix broken path
JAB1305 826b673
.github/workflows/pr: Update outdated requirements file path
JAB1305 4456d3f
server: Update server to replace all occurences of base path
JAB1305 0c91456
server/pyproject.toml: Add yaml types for mypy
JAB1305 01f6ede
server/test: Remove now obsolete base path test
JAB1305 7192d20
Bump python version and change to toml configs
JAB1305 90bba5d
Clean up yaml artifacts
JAB1305 94b1e2d
.github/workflows/release.yml: Use central version in package publica…
JAB1305 75081ea
.github/workflows/pr.yml: Add cerification on compl tool tests
JAB1305 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| name: load-versions | ||
| description: > | ||
| Loads values from the repo-root versions.toml into environment variables | ||
| for the current job (via GITHUB_ENV). Downstream steps consume the values | ||
| through the usual env context. Requires actions/checkout to have run first. | ||
|
|
||
| runs: | ||
| using: composite | ||
| steps: | ||
| - shell: bash | ||
| run: | | ||
| { | ||
| echo "X_PYTHON_MIN_VERSION=$(yq -p toml '.python.min' versions.toml)" | ||
| echo "X_PYTHON_MAX_VERSION=$(yq -p toml '.python.max' versions.toml)" | ||
| echo "X_MYPY_VERSION=$(yq -p toml '.dev_tools.mypy' versions.toml)" | ||
| echo "X_RUFF_VERSION=$(yq -p toml '.dev_tools.ruff' versions.toml)" | ||
| echo "X_API_VERSION=$(yq -p toml '.spec.api_version' versions.toml)" | ||
| echo "X_AAS_SPECS_RELEASE_TAG=$(yq -p toml '.spec.aas' versions.toml)" | ||
| } >> "$GITHUB_ENV" |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.