-
Notifications
You must be signed in to change notification settings - Fork 0
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 #256 from hpi-swa-teaching/bugfix/ci
Fix for basic CI/CD pipeline
- Loading branch information
Showing
10 changed files
with
36 additions
and
61 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{"propertyFileExtension" : ".json", | ||
"packageExtension" : ".package" } |
This file was deleted.
Oops, something went wrong.
35 changes: 16 additions & 19 deletions
35
packages/BaselineOfLiquid.package/BaselineOfLiquid.class/instance/baseline..st
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,21 +1,18 @@ | ||
baseline | ||
baseline: spec | ||
<baseline> | ||
|
||
spec | ||
for: #common do: [ | ||
spec | ||
baseline: 'StatisticsWorkbench' | ||
with: [spec repository: 'github://hpi-swa-teaching/StatisticsWorkbench:11245259c9fa9e0be1254a79ee744f28e56894d8/packages']; | ||
baseline: 'SwaLint' | ||
with: [spec repository: 'github://hpi-swa-teaching/SwaLint:release/packages']; | ||
package: 'Liquid-Core' with: [spec requires: #('libraries')]; | ||
package: 'Liquid-Network' with: [spec requires: #('libraries')]; | ||
package: 'Liquid-UI' with: [spec requires: #('libraries')]; | ||
package: 'Liquid-Tests' with: [spec requires: #('SwaLint' 'default')]; | ||
yourself. | ||
spec | ||
group: 'libraries' with: #('StatisticsWorkbench'); | ||
group: 'default' with: #('Liquid-Core' 'Liquid-Network' 'Liquid-UI'); | ||
group: 'tests' with: #('Liquid-Tests')]; | ||
yourself | ||
<baseline> | ||
spec | ||
for: #'common' | ||
do: [ | ||
spec | ||
baseline: 'SwaLint' | ||
with: [spec repository: 'github://hpi-swa-teaching/SwaLint:release/packages']; | ||
package: 'Liquid-Core'; | ||
package: 'Liquid-Network'; | ||
package: 'Liquid-UI'; | ||
package: 'Liquid-Tests' with: [spec requires: #('SwaLint' 'default')]; | ||
yourself. | ||
spec | ||
group: 'default' with: #('Liquid-Core' 'Liquid-Network' 'Liquid-UI'); | ||
group: 'tests' with: #('Liquid-Tests'); | ||
yourself]. |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
"class" : { | ||
}, | ||
"instance" : { | ||
"baseline:" : "CG 7/30/2021 19:06" } } | ||
"baseline:" : "FLST 6/7/2024 12:09" } } |
5 changes: 3 additions & 2 deletions
5
...es/Liquid-Tests.package/LQLintTests.class/instance/testNoMessagesSentButNotImplemented.st
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,4 +1,5 @@ | ||
bugs | ||
testNoMessagesSentButNotImplemented | ||
|
||
self assertAllZero: (self lint: #smallLintSentNotImplemented except: {LQAuthenticationTests}) | ||
self | ||
assertAllZero: (self lint: #smallLintSentNotImplemented except: {LQAuthenticationTests. LQVisualizationView}) | ||
"Note: The test for LQVisualizationView does not properly work as SwaLint can't locate the StatisticsWorkbench" |
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