@@ -14,24 +14,24 @@ jobs:
1414 steps :
1515 - name : checkout
1616 uses : actions/checkout@v2
17-
18- - name : checkFormat
19- uses : gradle/gradle-build-action@v1
20- with :
21- arguments : checkFormat
22-
23- - name : assemble
24- uses : gradle/gradle-build-action@v1
25- with :
26- arguments : assemble
27-
28- - name : test
29- uses : gradle/gradle-build-action@v1
30- with :
31- arguments : test
32- env :
33- ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION : OFF
34- ORG_GRADLE_PROJECT_TILEDB_S3 : OFF
17+ #
18+ # - name: checkFormat
19+ # uses: gradle/gradle-build-action@v1
20+ # with:
21+ # arguments: checkFormat
22+ #
23+ # - name: assemble
24+ # uses: gradle/gradle-build-action@v1
25+ # with:
26+ # arguments: assemble
27+ #
28+ # - name: test
29+ # uses: gradle/gradle-build-action@v1
30+ # with:
31+ # arguments: test
32+ # env:
33+ # ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION: OFF
34+ # ORG_GRADLE_PROJECT_TILEDB_S3: OFF
3535
3636
3737 Test_Ubuntu_macOS :
@@ -89,44 +89,44 @@ jobs:
8989 steps :
9090 - name : checkout
9191 uses : actions/checkout@v2
92-
93- - run : |
94- mkdir binaries_Windows
95- ./gradlew.bat assemble
96- Copy-Item ./build/tiledb_jni/Release/*.dll -Destination ./binaries_Windows/
97- Copy-Item ./build/install/bin/*.dll -Destination ./binaries_Windows/
98- name: Assemble
99-
100- - run : |
101- set -e pipefail
102- # Display log files if the build failed
103- echo "Dumping log files for failed build"
104- echo "----------------------------------"
105- for f in $(find $BUILD_REPOSITORY_LOCALPATH -name *.log);
106- do echo "------"
107- echo $f
108- echo "======"
109- cat $f
110- done;
111- if: ${{ failure() }}
112- name: "Print log files (failed build only)"
113-
114- - name : Archive files
115- uses : master-atul/tar-action@v1.0.2
116- id : compress
117- with :
118- command : c
119- cwd : ./
120- files : |
121- ./binaries_Windows
122- outPath : tiledb-Win.gz.tar
123-
124- - uses : actions/upload-artifact@v2
125- with :
126- name : Upload-Artifact-Windows
127- path : tiledb-Win.gz.tar
128- env :
129- ORG_GRADLE_PROJECT_TILEDB_S3 : ON
92+ #
93+ # - run: |
94+ # mkdir binaries_Windows
95+ # ./gradlew.bat assemble
96+ # Copy-Item ./build/tiledb_jni/Release/*.dll -Destination ./binaries_Windows/
97+ # Copy-Item ./build/install/bin/*.dll -Destination ./binaries_Windows/
98+ # name: Assemble
99+ #
100+ # - run: |
101+ # set -e pipefail
102+ # # Display log files if the build failed
103+ # echo "Dumping log files for failed build"
104+ # echo "----------------------------------"
105+ # for f in $(find $BUILD_REPOSITORY_LOCALPATH -name *.log);
106+ # do echo "------"
107+ # echo $f
108+ # echo "======"
109+ # cat $f
110+ # done;
111+ # if: ${{ failure() }}
112+ # name: "Print log files (failed build only)"
113+ #
114+ # - name: Archive files
115+ # uses: master-atul/tar-action@v1.0.2
116+ # id: compress
117+ # with:
118+ # command: c
119+ # cwd: ./
120+ # files: |
121+ # ./binaries_Windows
122+ # outPath: tiledb-Win.gz.tar
123+ #
124+ # - uses: actions/upload-artifact@v2
125+ # with:
126+ # name: Upload-Artifact-Windows
127+ # path: tiledb-Win.gz.tar
128+ # env:
129+ # ORG_GRADLE_PROJECT_TILEDB_S3: ON
130130
131131 Create_Artifacts_Ubuntu_MacOS :
132132 if : startsWith(github.ref, 'refs/tags/')
@@ -240,9 +240,9 @@ jobs:
240240 mv libtiledbjni.so ./build/tiledb_jni
241241
242242 # Windows
243- mv tbb.dll ./build/install/bin
244- mv tiledb.dll ./build/install/bin
245- mv tiledbjni.dll ./build/tiledb_jni/Release
243+ # mv tbb.dll ./build/install/bin
244+ # mv tiledb.dll ./build/install/bin
245+ # mv tiledbjni.dll ./build/tiledb_jni/Release
246246
247247 ./gradlew assemble
248248
0 commit comments