File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,11 @@ name: CI Build & Test
2
2
3
3
on :
4
4
push :
5
- branches : [ main ]
6
- pull_request :
7
- branches : [ main ]
8
- release :
9
- types :
10
- - published
11
- branches :
12
- - main
5
+ tags :
6
+ - " v*.*.*"
13
7
14
8
jobs :
15
- build_upload :
9
+ build :
16
10
runs-on : ubuntu-latest
17
11
18
12
steps :
31
25
mkdir build && cd build
32
26
cmake ..
33
27
make -j2
34
- pwd && ls
35
28
sudo make install
36
29
cd ../../
37
30
@@ -43,12 +36,10 @@ jobs:
43
36
mkdir build && cd build
44
37
cmake -DARROW_PARQUET=ON -DARROW_BUILD_SHARED=OFF -DARROW_WITH_BROTLI=OFF -DARROW_WITH_BZ2=OFF -DARROW_WITH_LZ4=OFF -DARROW_WITH_SNAPPY=OFF -DARROW_WITH_ZLIB=OFF -DARROW_WITH_ZSTD=ON -DARROW_USE_OPENSSL=ON -DPARQUET_REQUIRE_ENCRYPTION=ON ..
45
38
make -j2
46
- pwd && ls
47
39
sudo make install
48
40
49
41
- name : Build
50
42
run : |
51
- pwd && ls
52
43
mkdir build
53
44
cd build
54
45
cmake ..
72
63
73
64
- name : Create Release
74
65
uses : softprops/action-gh-release@v2
75
- if : startsWith( github.ref, 'refs/tags/')
66
+ if : github.ref_type == 'tag'
76
67
with :
77
68
prerelease : ${{ steps.prerelease.outputs.prerelease }}
78
69
generate_release_notes : true
You can’t perform that action at this time.
0 commit comments