-
Notifications
You must be signed in to change notification settings - Fork 15
update modules for 0.5.0 release #21
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
Merged
AlexanderLanin
merged 3 commits into
eclipse-score:main
from
etas-contrib:feature/modify_for_0.5_release
Nov 10, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,10 +18,28 @@ name: Bazel Build some repositories | |
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| pull_request: | ||
| jobs: | ||
| integration_test: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Show disk space before build | ||
| run: | | ||
| echo 'Disk space before build:' | ||
| df -h | ||
| - name: Removing unneeded software | ||
| run: | | ||
| echo "Removing unneeded software... " | ||
| if [ -d /usr/share/dotnet ]; then echo "Removing dotnet..."; start=$(date +%s); sudo rm -rf /usr/share/dotnet; end=$(date +%s); echo "Duration: $((end-start))s"; fi | ||
| #if [ -d /usr/local/lib/android ]; then echo "Removing android..."; start=$(date +%s); sudo rm -rf /usr/local/lib/android; end=$(date +%s); echo "Duration: $((end-start))s"; fi | ||
| if [ -d /opt/ghc ]; then echo "Removing haskell (ghc)..."; start=$(date +%s); sudo rm -rf /opt/ghc; end=$(date +%s); echo "Duration: $((end-start))s"; fi | ||
| if [ -d /usr/local/.ghcup ]; then echo "Removing haskell (ghcup)..."; start=$(date +%s); sudo rm -rf /usr/local/.ghcup; end=$(date +%s); echo "Duration: $((end-start))s"; fi | ||
| if [ -d /usr/share/swift ]; then echo "Removing swift..."; start=$(date +%s); sudo rm -rf /usr/share/swift; end=$(date +%s); echo "Duration: $((end-start))s"; fi | ||
| if [ -d /usr/local/share/chromium ]; then echo "Removing chromium..."; start=$(date +%s); sudo rm -rf /usr/local/share/chromium; end=$(date +%s); echo "Duration: $((end-start))s"; fi | ||
| - name: Show disk space after cleanup | ||
| run: | | ||
| echo 'Disk space after cleanup:' | ||
| df -h | ||
| - name: Checkout repository | ||
| uses: actions/[email protected] | ||
| - name: Setup Bazel | ||
|
|
@@ -33,28 +51,14 @@ jobs: | |
| disk-cache: ${{ github.workflow }} | ||
| # Share repository cache between workflows. | ||
| repository-cache: true | ||
| - name: Show disk space before build | ||
| run: | | ||
| echo 'Disk space before build:' | ||
| df -h | ||
| echo 'Inode usage before build:' | ||
| df -i | ||
| echo 'Largest top-level directories:' | ||
| du -h -d 1 2>/dev/null | sort -h | tail -n 20 || true | ||
| - name: Bazel build targets | ||
| run: | | ||
| echo 'Starting Bazel build (disk space snapshot):' | ||
| df -h | sed 's/^/PRE-BUILD DF /' | ||
| ./integration_test.sh | ||
| - name: Show disk space after build | ||
| if: always() | ||
| run: | | ||
| echo 'Disk space after build:' | ||
| df -h | ||
| echo 'Inode usage after build:' | ||
| df -i | ||
| echo 'Largest top-level directories after build:' | ||
| du -h -d 1 2>/dev/null | sort -h | tail -n 20 || true | ||
| - name: Publish build summary | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.