-
Notifications
You must be signed in to change notification settings - Fork 8
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 #40 from bailuk/dev/properties
Add gui tests
- Loading branch information
Showing
5 changed files
with
102 additions
and
4 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 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,25 @@ | ||
# A Ubuntu based build image | ||
# | ||
# This should be as identical as possible with the official GitHub Actions Ubuntu image | ||
# https://github.com/actions/runner-images | ||
# | ||
# Based on https://hub.docker.com/_/ubuntu/ | ||
|
||
# podman build -f Dockerfile -t build-on-ubuntu | ||
# podman run -it --name build-on-ubuntu build-on-ubuntu:latest | ||
# => ./clone-and-build.sh | ||
|
||
FROM docker.io/ubuntu:latest | ||
LABEL version="0.1.0" | ||
|
||
ENV JAVA_TOOL_OPTIONS "-Dfile.encoding=UTF8" | ||
|
||
COPY clone-and-build.sh clone-and-build.sh | ||
RUN chmod +x clone-and-build.sh | ||
|
||
RUN apt-get -y update | ||
RUN apt-get -y upgrade | ||
RUN apt-get -y install git | ||
RUN apt-get -y install openjdk-11-jdk-headless | ||
RUN apt-get -y install libgtk-4-1 | ||
RUN apt-get -y clean |
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,9 @@ | ||
#!/bin/sh | ||
|
||
test -d java-gtk || git clone "https://github.com/bailuk/java-gtk.git" || exit 1 | ||
|
||
cd java-gtk || exit 1 | ||
git pull || exit 1 | ||
|
||
./gradlew generate || exit 1 | ||
./gradlew build |
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