File tree 3 files changed +23
-0
lines changed
3 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 51
51
gpg --verify apache-atlas.tar.gz.asc apache-atlas.tar.gz
52
52
tar zxf apache-atlas.tar.gz
53
53
54
+ - name : Patch Apache Atlas ${{ matrix.version }}
55
+ id : patch-atlas
56
+ run : |
57
+ ls -la
58
+ if [[ -f "$(pwd)/patches/${{ matrix.version }}.sh" ]]; then
59
+ $(pwd)/patches/${{ matrix.version }}.sh "$(pwd)/apache-atlas-sources-${{ matrix.version }}"
60
+ fi
61
+
54
62
- name : Set up JDK 1.8
55
63
56
64
with :
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -euxo pipefail
4
+
5
+ CURRENT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
6
+
7
+ ATLAS_PATH=$1
8
+
9
+ patch --verbose " ${ATLAS_PATH} /pom.xml" " ${CURRENT_DIR} /2.3.0/pom.xml.patch"
Original file line number Diff line number Diff line change
1
+ 888a889,893
2
+ > <repository>
3
+ > <id>maven-restlet</id>
4
+ > <name>Public online Restlet repository</name>
5
+ > <url>https://maven.restlet.talend.com/</url>
6
+ > </repository>
You can’t perform that action at this time.
0 commit comments