Skip to content

Commit

Permalink
Update full build pr check
Browse files Browse the repository at this point in the history
  • Loading branch information
NipunaMadhushan committed Jan 3, 2025
1 parent e4a6041 commit 39cc0e4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pull_request_full_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,15 @@ jobs:
perl -pi -e "s/^\s*ballerinaLangVersion=.*/ballerinaLangVersion=${{ needs.build-lang.outputs.lang_version }}/" ${module_name}/gradle.properties; \
done
- name: Update Observe Module Version
run: |
OBSERVE_VERSION=1.4.0-20241220-100300-6b4cf7a
OBSERVE_INTERNAL_VERSION=1.4.0-20250103-120100-3c54658
for module_name in $(jq -r '.standard_library| .[] | select(.level==${{ matrix.level }}) | .name' extensions.json); do \
perl -pi -e "s/^\s*observeVersion=.*/observeVersion=$OBSERVE_VERSION/" gradle.properties && \
perl -pi -e "s/^\s*observeInternalVersion=.*/observeInternalVersion=$OBSERVE_INTERNAL_VERSION/" gradle.properties; \
done
- name: Build Module
run: |
for module_name in $(jq -r '.standard_library| .[] | select(.level==${{ matrix.level }}) | .name' extensions.json); do \
Expand Down Expand Up @@ -142,6 +151,13 @@ jobs:
run: |
perl -pi -e "s/^\s*ballerinaLangVersion=.*/ballerinaLangVersion=${{ needs.build-lang.outputs.lang_version }}/" gradle.properties
- name: Update Observe Module Version
run: |
OBSERVE_VERSION=1.4.0-20241220-100300-6b4cf7a
OBSERVE_INTERNAL_VERSION=1.4.0-20250103-120100-3c54658
perl -pi -e "s/^\s*observeVersion=.*/observeVersion=$OBSERVE_VERSION/" gradle.properties
perl -pi -e "s/^\s*observeInternalVersion=.*/observeInternalVersion=$OBSERVE_INTERNAL_VERSION/" gradle.properties
- name: Build Module
run: ./gradlew clean build --stacktrace --scan --console=plain --no-daemon --continue -x :project-api-tests:test
env:
Expand Down

0 comments on commit 39cc0e4

Please sign in to comment.