File tree Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 1
1
name : Build and test jar with integration tests
2
- run-name : ${{ github.actor }} is testing out GitHub Actions 🚀
3
2
on : [push]
4
3
jobs :
5
- Explore-GitHub-Actions :
4
+ CDM-Integration-Test :
6
5
runs-on : ubuntu-latest
7
6
steps :
8
7
- uses : actions/checkout@v3
12
11
java-version : ' 8'
13
12
distribution : ' temurin'
14
13
cache : maven
15
- - name : Build with Maven
16
- run : mvn -B package --file pom.xml
17
-
18
14
- name : Test SIT with cdm
19
15
working-directory : SIT
20
16
run : |
21
17
echo "Testing SIT with cdm"
22
- chmod o+rx ./environment.sh
23
- make -f Makefile
18
+ make -f Makefile
Original file line number Diff line number Diff line change 1
1
2
- all : set_permissions setup test_smoke env_teardown
2
+ all : setup test_smoke env_teardown
3
3
4
- set_permissions :
5
- chmod -R 777 ./* .sh
6
4
setup : build env_setup
7
5
8
6
reset : build env_reset
@@ -16,6 +14,7 @@ test_smoke_cmd:
16
14
./test.sh -p smoke
17
15
18
16
env_setup :
17
+ chmod -R 777 ./* .sh
19
18
./environment.sh -m setup -j ../target/cassandra-data-migrator* .jar
20
19
env_reset :
21
20
./environment.sh -m reset -j ../target/cassandra-data-migrator* .jar
Original file line number Diff line number Diff line change 8
8
9
9
<properties >
10
10
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
11
- <revision >3. 4.0</revision >
11
+ <revision >4.0.0-SNAPSHOT </revision >
12
12
<scala .version>2.12.17</scala .version>
13
13
<scala .main.version>2.12</scala .main.version>
14
14
<spark .version>3.3.1</spark .version>
23
23
<id >github</id >
24
24
<name >GitHub Packages</name >
25
25
<url >https://maven.pkg.github.com/datastax/cassandra-data-migrator</url >
26
+ <snapshots >
27
+ <enabled >false</enabled >
28
+ </snapshots >
26
29
</repository >
27
30
</distributionManagement >
28
31
You can’t perform that action at this time.
0 commit comments