-
Notifications
You must be signed in to change notification settings - Fork 6
feat(ci): create GitHub release workflow #121
feat(ci): create GitHub release workflow #121
Conversation
ce8d1cd
to
30511f2
Compare
Builds binaries in top-level
Linux testing:
Windows testing:
|
Signed-off-by: Johnson Shi <[email protected]>
30511f2
to
29475e3
Compare
Codecov Report
@@ Coverage Diff @@
## main #121 +/- ##
=======================================
Coverage 42.51% 42.51%
=======================================
Files 29 29
Lines 1249 1249
=======================================
Hits 531 531
Misses 718 718
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
pkg/osm/version/types_test.go
Outdated
@@ -15,7 +15,7 @@ func TestEnvoyConfigParser(t *testing.T) { | |||
assert := tassert.New(t) | |||
actual := getReleases() | |||
|
|||
assert.Equal([]string{"v0.10", "v0.11", "v0.6", "v0.7", "v0.8", "v0.9"}, actual) | |||
assert.Equal([]string{"v0.10", "v0.11", "v0.7", "v0.8", "v0.9"}, actual) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needed to pass unit tests as v0.6
is not supported anymore.
runs-on: ubuntu-latest | ||
needs: version | ||
env: | ||
# VERSION: ${{ needs.version.outputs.version }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this commented out?
Creates GitHub release workflow and build-cross dist Makefile target
Resolves #109
Signed-off-by: Johnson Shi [email protected]