Commit 2377c41 1 parent c201017 commit 2377c41 Copy full SHA for 2377c41
File tree 1 file changed +13
-10
lines changed
1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -39,25 +39,28 @@ jobs:
39
39
40
40
- name : Run Linux Build
41
41
if : matrix.os == 'ubuntu-latest'
42
- run : echo "Ubuntu Latest" > release_ubuntu
42
+ run : |
43
+ echo "Ubuntu Latest" > release_ubuntu
44
+ make
45
+ make check
46
+ make artifacts
43
47
44
48
- name : Run Mac Build
45
49
if : matrix.os == 'macos-latest'
46
50
run : |
47
51
echo "MacOS Latest" > release_mac
48
- brew install flex
49
52
brew install gawk
53
+ make
54
+ make check
55
+ make artifacts
50
56
51
57
- name : Run Windows Build
52
58
if : matrix.os == 'windows-latest'
53
- run : echo "Windows Latest" > release_windows
54
-
55
- - name : Make
56
- run : make
57
- - name : Check
58
- run : make check
59
- - name : Create .tar.gz files
60
- run : make artifacts
59
+ run : |
60
+ echo "Windows Latest" > release_windows
61
+ make
62
+ make check
63
+ make artifacts
61
64
62
65
- name : Release
63
66
uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments