Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for concept start/ending events #64

Merged
merged 3 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading