File tree Expand file tree Collapse file tree 3 files changed +7
-13
lines changed Expand file tree Collapse file tree 3 files changed +7
-13
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 3
3
4
4
name : Maven Package
5
5
6
- on : [push]
7
- # push:
8
- # branches: [ main ]
6
+ on :
7
+ push :
8
+ branches : [ main ]
9
9
10
10
jobs :
11
11
build :
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
You can’t perform that action at this time.
0 commit comments