-
Notifications
You must be signed in to change notification settings - Fork 1
Dev release/5.3.2 #175
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
Merged
Merged
Dev release/5.3.2 #175
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
c1c4e3a
Change select parametr for magento categories, using only enity id in…
56cbb44
Merge pull request #171 from ugljesaspx/develop
supercid c279df2
Bump actions/upload-artifact to v4
supercid d1f4ee6
Merge pull request #172 from Nosto/ci-update
supercid 4c4f972
Allow 8 version for nosto-tagging
5d8ff8b
Update actions cache version
c493b0e
Fix git action
c3f7a1d
8.0 version
b34b865
Merge pull request #174 from Nosto/update-nosto-tagging-version
artiommatvejev 4372eba
Bump version and update changelog
74d03b5
Change author
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,6 @@ | ||
| FROM supercid/jbstorm:latest | ||
| RUN apt-get update -y | ||
| RUN apt-get install -y xsltproc | ||
| COPY *.xslt / | ||
| COPY ../entrypoint.sh /entrypoint.sh | ||
| ENTRYPOINT ["/entrypoint.sh"] |
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,34 @@ | ||
| name: 'PHPStorm Inspector' | ||
| description: 'Runs PHPStorm inspections on your codebase' | ||
| author: 'Mridang Agarwalla' | ||
| inputs: | ||
| target: | ||
| required: true | ||
| description: 'The directory to be inspected.' | ||
| profile: | ||
| required: true | ||
| description: 'The absolute path to the profile file.' | ||
| output: | ||
| required: true | ||
| description: 'The absolute path to spew outputs to.' | ||
| verbosity: | ||
| required: false | ||
| description: 'The verbose level. v0 - silent, v1 - verbose, v2 - most verbose.' | ||
| default: 'v2' | ||
| scope: | ||
| required: false | ||
| description: 'The inspection scope to be used. If none, all files are inspected.' | ||
| default: 'default' | ||
| noinspect : | ||
| required: false | ||
| description: 'A command delimited list of inspection output files to be skipped.' | ||
| runs: | ||
| using: 'docker' | ||
| image: 'Dockerfile' | ||
| args: | ||
| - ${{ inputs.target }} | ||
| - ${{ inputs.profile }} | ||
| - ${{ inputs.output }} | ||
| - ${{ inputs.verbosity }} | ||
| - ${{ inputs.scope }} | ||
| - ${{ inputs.noinspect }} | ||
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,37 @@ | ||
| #!/bin/sh -l | ||
|
|
||
| echo "$GITHUB_WORKSPACE/.idea" | ||
|
|
||
| # Create output directory | ||
| mkdir -p "$3" | ||
|
|
||
| # Only try to copy idea.properties if it exists | ||
| if [ -f "$GITHUB_WORKSPACE/idea.properties" ]; then | ||
| cp "$GITHUB_WORKSPACE/idea.properties" /opt/ide/bin/ | ||
| fi | ||
|
|
||
| # Setup inspection scope | ||
| if [ "$5" != "default" ]; then | ||
| for file in phpstorm.vmoptions phpstorm64.vmoptions; do | ||
| vmopts="/opt/ide/bin/$file" | ||
|
|
||
| # Create file if missing | ||
| if [ ! -f "$vmopts" ]; then | ||
| echo "# Auto-generated $file" > "$vmopts" | ||
| fi | ||
|
|
||
| echo "-Didea.analyze.scope=$5" >> "$vmopts" | ||
| done | ||
|
|
||
| export STUDIO_VM_OPTIONS=/opt/ide/bin/phpstorm64.vmoptions | ||
| export PHPSTORM_VM_OPTIONS=/opt/ide/bin/phpstorm64.vmoptions | ||
| fi | ||
|
|
||
| echo "Running inspections" | ||
| /opt/ide/bin/inspect.sh "$1" "$2" "$3" -d "$1" "-$4" | ||
|
|
||
| # Optional: check for output files | ||
| if [ ! -f "$3/.descriptions.xml" ]; then | ||
| echo "No XML files generated in output dir. Possibly empty inspection run or broken profile." | ||
| exit 1 | ||
| fi |
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,15 @@ | ||
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||
| <xsl:output method="text" encoding="iso-8859-1"/> | ||
| <!-- https://stackoverflow.com/a/5738296/304151 --> | ||
| <xsl:template match="*/text()[string-length(normalize-space()) > 0]"> | ||
| <xsl:value-of select="normalize-space()"/> | ||
| </xsl:template> | ||
| <xsl:template match="*/text()[not(string-length(normalize-space()) > 0)]" /> | ||
| <xsl:template match="problem"> | ||
| <xsl:value-of select="file"/> | ||
| <!-- https://stackoverflow.com/a/25690036/304151 --> | ||
| <xsl:if test="position () < last()"> | ||
| <xsl:text>
</xsl:text> | ||
| </xsl:if> | ||
| </xsl:template> | ||
| </xsl:stylesheet> |
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,22 @@ | ||
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||
| <xsl:output method="text" encoding="iso-8859-1"/> | ||
| <!-- https://stackoverflow.com/a/5738296/304151 --> | ||
| <xsl:template match="*/text()[string-length(normalize-space()) > 0]"> | ||
| <xsl:value-of select="normalize-space()"/> | ||
| </xsl:template> | ||
| <xsl:template match="*/text()[not(string-length(normalize-space()) > 0)]" /> | ||
| <xsl:template match="problem"> | ||
| <xsl:text>::</xsl:text> | ||
| <xsl:text>warning </xsl:text> | ||
| <xsl:text>file=</xsl:text> | ||
| <xsl:value-of select="file"/> | ||
| <xsl:text>,line=</xsl:text> | ||
| <xsl:value-of select="line"/> | ||
| <xsl:text>::</xsl:text> | ||
| <xsl:value-of select="description" disable-output-escaping="yes"/> | ||
| <!-- https://stackoverflow.com/a/25690036/304151 --> | ||
| <xsl:if test="position () < last()"> | ||
| <xsl:text>
</xsl:text> | ||
| </xsl:if> | ||
| </xsl:template> | ||
| </xsl:stylesheet> |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.