mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-27 20:43:57 +00:00
5a26f392ca
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/12169 Reviewed By: pdillinger Differential Revision: D52715225 Pulled By: ajkr fbshipit-source-id: 28476d363034fa1bb9c8c919d577c03b6391451b
12 lines
395 B
YAML
12 lines
395 B
YAML
name: install-maven
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Maven
|
|
run: |
|
|
wget --no-check-certificate https://dlcdn.apache.org/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz
|
|
tar zxf apache-maven-3.9.6-bin.tar.gz
|
|
echo "export M2_HOME=$(pwd)/apache-maven-3.9.6" >> $GITHUB_ENV
|
|
echo "$(pwd)/apache-maven-3.9.6/bin" >> $GITHUB_PATH
|
|
shell: bash
|