Skip to content

Commit

Permalink
Disable subscription tests on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisaruGuruge committed Mar 6, 2025
1 parent 11bb004 commit 62bdeff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-timestamped-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ jobs:
if: ${{ github.repository_owner == 'ballerina-platform' }}
uses: ballerina-platform/ballerina-library/.github/workflows/build-timestamp-master-template.yml@2201.10.x
secrets: inherit
with:
additional-build-flags: "-P disable=subscriptions"
3 changes: 2 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ jobs:
with:
package-name: graphql
package-org: ballerina
additional-build-flags: '-x :graphql-examples:build'
additional-build-flags: '-x :graphql-examples:build -P disable=subscriptions'
additional-publish-flags: "-P disable=subscriptions"
2 changes: 2 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ jobs:
if: ${{ github.repository_owner == 'ballerina-platform' }}
uses: ballerina-platform/ballerina-library/.github/workflows/pull-request-build-template.yml@2201.10.x
secrets: inherit
with:
additional-ubuntu-test-flags: "-P disable=subscriptions"
2 changes: 1 addition & 1 deletion ballerina/modules/parser/lexer.bal
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public class Lexer {
while i < 3 {
i += 1;
string? c = self.readNextChar();
if c is DOT {
if c == DOT {
ellipsis += c;
continue;
} else if c == () {
Expand Down

0 comments on commit 62bdeff

Please sign in to comment.