Skip to content

Commit

Permalink
Pass CI build from GitHub Actions instead of Jenkins
Browse files Browse the repository at this point in the history
The initial folder was missing the Application class so a
version was copied from the complete folder so that builds pass.
The files required for Jenkins builds were removed as the project
will migrate to GitHub Actions for CI.
  • Loading branch information
Robert McNees committed Jun 14, 2024
1 parent 23f917d commit 29fbd66
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 80 deletions.
44 changes: 0 additions & 44 deletions Jenkinsfile

This file was deleted.

12 changes: 12 additions & 0 deletions initial/src/main/java/hello/Application.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
36 changes: 0 additions & 36 deletions test/run.sh

This file was deleted.

0 comments on commit 29fbd66

Please sign in to comment.