Skip to content

Commit

Permalink
add support for concept start/ending events (#64)
Browse files Browse the repository at this point in the history
* remove gauge_messages submodule and use go pkg

add compatibility for concept start/end events

Signed-off-by: sriv <[email protected]>

* remove redundant genproto.sh

Signed-off-by: sriv <[email protected]>

* remove hub cli, use ghcli instead

Signed-off-by: sriv <[email protected]>

---------

Signed-off-by: sriv <[email protected]>
  • Loading branch information
sriv authored Feb 1, 2024
1 parent 35a25cb commit 9184f84
Show file tree
Hide file tree
Showing 15 changed files with 70 additions and 10,489 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/release-on-pr-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,7 @@ jobs:
echo -e "XML Report v$version\n\n" > desc.txt
release_description=$(ruby -e "$(curl -sSfL https://github.com/getgauge/gauge/raw/master/build/create_release_text.rb)" getgauge xml-report)
echo "$release_description" >> desc.txt
echo "Creating new draft for release v$version"
hub release create -F ./desc.txt "v$version"
sleep 10
rm -rf desc.txt
echo "Start uploading assets..."
for i in `ls $artifacts`; do
hub release edit -m "" -a $i "v$version"
if [ $? -ne 0 ];then
exit 1
fi
done
gh release create "v$version" -F ./desc.txt $artifacts
- name: Update metadata in gauge-repository
run: |
Expand Down
2 changes: 1 addition & 1 deletion builder/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

"strings"

"github.com/getgauge/xml-report/gauge_messages"
"github.com/getgauge/gauge-proto/go/gauge_messages"
"github.com/lestrrat-go/libxml2"
"github.com/lestrrat-go/libxml2/xsd"
. "gopkg.in/check.v1"
Expand Down
2 changes: 1 addition & 1 deletion builder/xmlReportBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

"path/filepath"

"github.com/getgauge/xml-report/gauge_messages"
"github.com/getgauge/gauge-proto/go/gauge_messages"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion builder/xmlReportBuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"path/filepath"

"github.com/getgauge/xml-report/gauge_messages"
"github.com/getgauge/gauge-proto/go/gauge_messages"
. "gopkg.in/check.v1"
)

Expand Down
Loading

0 comments on commit 9184f84

Please sign in to comment.