Release List
Download
Use the links below to download the Apache Linkis Releases, the latest release is 1.6.0
Release Integrity
You must verify the integrity of the downloaded files. We provide OpenPGP signatures for every release file.
This signature should be matched against the KEYS file which contains the OpenPGP keys of Linkis's Release Managers. We also provide SHA-512
checksums for every release file. After you download the file, you should calculate a checksum for your download, and make sure it is the same as ours.
validation example:
#download public key
$ curl https://downloads.apache.org/incubator/linkis/KEYS > KEYS
#Import public key
$ gpg -i KEYS
# Check gpg signature
$ gpg --verify apache-linkis-xxxxx.tar.gz.asc apache-linkis-xxxxx.tar.gz
# check sha512 hash
$ sha512sum --check apache-linkis-xxxxx-src.tar.gz.sha512
Source Code Compilation
If it is the downloaded version of the Source code package, you can compile it according to the following simple steps
$ tar -xvf apache-linkis-xxxxx-incubating-src.tar.gz
$ cd apache-linkis-xxxxx-incubating-src
#If this source code package is compiled for the first time, you need to execute this command, which is usually completed within 3 minutes
$ ./mvnw -N install
#If the performance of the machine where the compilation is located is relatively poor, this process will be time-consuming, usually about 30min
$ ./mvnw clean install -Dmaven.javadoc.skip=true -Dmaven.test.skip=true
For detailed guidelines, please refer to: Compilation and Packaging Guidelines