Skip to content
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

Rultor bison fix #54

Merged
merged 2 commits into from
Jan 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@ assets:
pubring.gpg: yegor256/home#assets/pubring.gpg
secring.gpg: yegor256/home#assets/secring.gpg
install: |
wget http://ftp.gnu.org/gnu/bison/bison-3.8.tar.gz
tar -zxvf bison-3.8.tar.gz
cd bison-3.8
./configure
make
sudo make install
bison -V
cd ..
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886 E1DF1F24 3DD9F856
sudo apt install -y openjdk-16-jdk
ls -a /usr/lib/jvm/
sudo export JAVA_HOME=/usr/lib/jvm/openjdk-16-jdk
sudo export JAVA_HOME=/usr/lib/jvm/java-16-openjdk-amd64
echo $JAVA_HOME
java -version
./gradlew build --info
Expand Down