Skip to content

Commit

Permalink
remove autograder-full
Browse files Browse the repository at this point in the history
  • Loading branch information
Feuermagier committed Jul 13, 2024
1 parent dfedab5 commit 2331753
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 118 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ jobs:
name: autograder-cmd
path: |
autograder-cmd/target/autograder-cmd.jar
autograder-full/target/autograder-full.jar
if-no-files-found: error

# Release only when pushing to a tag
Expand All @@ -62,4 +61,3 @@ jobs:
body: 'Minor Release (mostly for the automatic download of the jar file)'
files: |
autograder-cmd/target/autograder-cmd.jar
autograder-full/target/autograder-full.jar
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@

import static org.junit.jupiter.api.Assertions.*;

@Disabled("This test is disabled because it requires the autograder-full.jar to be present in the target directory, which is not the case in the CI pipeline.")
@Disabled("This test is disabled because it requires the autograder-cmd.jar to be present in the target directory, which is not the case in the CI pipeline.")
class AutograderLoaderTest {
@Test
void testLoadFromFile() throws IOException {
Path path = Path.of("../autograder-full/target/autograder-full.jar");
Path path = Path.of("../autograder-cmd/target/autograder-cmd.jar");
AutograderLoader.loadFromFile(path);
this.assertClassesPresent();
}
Expand Down
111 changes: 0 additions & 111 deletions autograder-full/pom.xml

This file was deleted.

1 change: 0 additions & 1 deletion jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,3 @@ distributions:
type: SINGLE_JAR
artifacts:
- path: autograder-cmd/target/autograder-cmd.jar
- path: autograder-full/target/autograder-full.jar
2 changes: 0 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@
<module>autograder-treeg</module>
<module>autograder-span</module>
<module>autograder-extra</module>
<module>autograder-full</module>
</modules>
</profile>

Expand All @@ -265,7 +264,6 @@
<module>autograder-treeg</module>
<module>autograder-span</module>
<module>autograder-extra</module>
<module>autograder-full</module>
</modules>
</profile>
</profiles>
Expand Down

0 comments on commit 2331753

Please sign in to comment.