Skip to content

Commit 7350c53

Browse files
committed
Merge branch 'main' into chplenv-errors
2 parents afb0fd4 + f043307 commit 7350c53

File tree

3,427 files changed

+51968
-353116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,427 files changed

+51968
-353116
lines changed

.github/workflows/CI.yml

+84-1
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ jobs:
4848
# also builds chapel-py so those docs are included
4949
run: |
5050
./util/buildRelease/smokeTest quickstart chapel-py docs
51+
tar -cvf docs.tar.gz -C doc/html .
5152
- name: upload docs
5253
uses: actions/upload-artifact@v4
5354
with:
5455
name: documentation
55-
path: doc/html
56+
path: docs.tar.gz
5657

5758
make_mason:
5859
runs-on: ubuntu-latest
@@ -136,3 +137,85 @@ jobs:
136137
- name: smokeTest lint
137138
run: |
138139
./util/buildRelease/smokeTest lint
140+
check_large_files:
141+
if: github.event_name == 'pull_request'
142+
runs-on: ubuntu-latest
143+
steps:
144+
- name: count PR commits
145+
run: echo "PR_NUM_COMMITS=$(( ${{ github.event.pull_request.commits }} + 2 ))" >> "${GITHUB_ENV}"
146+
- name: checkout commits on PR branch
147+
uses: actions/checkout@v4
148+
with:
149+
fetch-depth: ${{ env.PR_NUM_COMMITS }}
150+
- name: check commits for large files
151+
run: |
152+
FILE_SIZE_LIMIT_KB=1024
153+
154+
baseSHA=${{github.event.pull_request.base.sha}}
155+
headSHA=${{github.event.pull_request.head.sha}}
156+
157+
echo "Base SHA: $baseSHA"
158+
echo "Head SHA: $headSHA"
159+
echo "${{github.event.pull_request.commits}} commits in PR"
160+
161+
# Loop backward through commits added in the PR, starting from the
162+
# latest.
163+
commitIdx=0
164+
for commit in $(git rev-list $baseSHA..$headSHA)
165+
do
166+
echo "Checking commit: $commit"
167+
git checkout -q $commit
168+
169+
# Get list of added, copied, or modified files from this commit.
170+
newFiles=$(git diff --name-only --diff-filter=ACM $commit^ $commit)
171+
while read -r file; do
172+
if [ "$file" = "" ]; then
173+
continue
174+
fi
175+
echo "Checking file: $file"
176+
177+
file_size=$(ls -l "$file" | awk '{print $5}')
178+
file_size_kb=$((file_size / 1024))
179+
180+
if [ "$file_size_kb" -ge "$FILE_SIZE_LIMIT_KB" ]; then
181+
echo "Error: ${file} is too large (size ${file_size_kb}KB, limit ${FILE_SIZE_LIMIT_KB}KB). Introduced in commit: $commit"
182+
exit 1
183+
fi
184+
done <<< "$newFiles"
185+
186+
# Stop after going through the number of commits this PR has.
187+
commitIdx=$((commitIdx+1))
188+
if [ "$commitIdx" = "${{github.event.pull_request.commits}}" ]; then
189+
echo "Stopping after $commitIdx commits, on commit $commit"
190+
break
191+
fi
192+
done
193+
194+
publish-docs:
195+
if: github.event_name == 'push' && github.repository == 'chapel-lang/chapel'
196+
runs-on: ubuntu-latest
197+
needs: make_doc
198+
steps:
199+
- name: download docs
200+
uses: actions/download-artifact@v4
201+
with:
202+
name: documentation
203+
204+
- name: setup keys
205+
run: |
206+
install -m 600 -D /dev/null ~/.ssh/id_rsa
207+
echo "${{ secrets.WEBSITE_KEY }}" > ~/.ssh/id_rsa
208+
echo "${{ secrets.WEBSITE_KNOWN_HOSTS}}" > ~/.ssh/known_hosts
209+
210+
- name: push docs
211+
run: |
212+
echo "extract docs"
213+
tar -xvf docs.tar.gz
214+
echo "Publish module docs to web server"
215+
# py-modindex.html is not needed
216+
rm -f py-modindex.html
217+
# Remove all hidden files except .htaccess
218+
find . -maxdepth 1 -type f -name ".*" ! -name ".htaccess" -exec rm -f {} +
219+
rsync -avz --cvs-exclude --delete --relative --dry-run . ${{ secrets.WEBSITE_USER }}@${{ secrets.WEBSITE_URL }}:${{ secrets.WEBSITE_PATH }}
220+
rm ~/.ssh/id_rsa
221+
rm ~/.ssh/known_hosts
+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
name: Monitor Homebrew Formula
2+
3+
on:
4+
workflow_dispatch: # Allows manual triggering of the workflow
5+
schedule:
6+
- cron: '0 0 * * *' # Runs every 24 hours
7+
8+
9+
env:
10+
file_changed: ${{ false }}
11+
branch_exists: ${{ false }}
12+
13+
jobs:
14+
check-and-update:
15+
if: github.repository == 'chapel-lang/chapel'
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout this repository
20+
uses: actions/checkout@v4
21+
22+
- name: Fetch released version of Chapel formula
23+
run: |
24+
curl -o hb_master_chapel.rb https://raw.githubusercontent.com/homebrew/homebrew-core/master/Formula/c/chapel.rb
25+
FILE_HASH=$(sha256sum hb_master_chapel.rb | awk '{ print $1 }')
26+
HASH_SUBSTRING=${FILE_HASH:0:7}
27+
echo "FILE_HASH=$FILE_HASH" >> $GITHUB_ENV
28+
echo "HASH_SUBSTRING=$HASH_SUBSTRING" >> $GITHUB_ENV
29+
30+
- name: Compare the released version with the chapel-release.rb
31+
id: compare
32+
run: |
33+
if ! cmp -s hb_master_chapel.rb util/packaging/homebrew/chapel-release.rb; then
34+
echo "file_changed=true" >> $GITHUB_ENV
35+
else
36+
echo "file_changed=false" >> $GITHUB_ENV
37+
fi
38+
39+
- name: Check if branch already exists
40+
id: check-branch
41+
if: ${{ env.file_changed == 'true' }}
42+
run: |
43+
BRANCH_NAME=update-chapel-homebrew-release-${{ env.HASH_SUBSTRING }}
44+
if git ls-remote --heads origin $BRANCH_NAME | grep -q $BRANCH_NAME; then
45+
echo "Branch $BRANCH_NAME already exists."
46+
echo "branch_exists=true" >> $GITHUB_ENV
47+
else
48+
echo "Branch $BRANCH_NAME does not exist."
49+
echo "branch_exists=false" >> $GITHUB_ENV
50+
fi
51+
52+
- name: Exit if branch exists
53+
if: ${{ (env.file_changed == 'true') && (env.branch_exists == 'true') }}
54+
run: |
55+
echo "Branch already exists. Exiting."
56+
exit 0
57+
58+
- name: Create a new branch if file has changed
59+
if: ${{ (env.file_changed == 'true') && (env.branch_exists == 'false') }}
60+
run: |
61+
git config --global user.email "[email protected]"
62+
git config --global user.name "github action"
63+
git checkout -b update-chapel-homebrew-release-${{ env.HASH_SUBSTRING }}
64+
mv hb_master_chapel.rb util/packaging/homebrew/chapel-release.rb
65+
git add util/packaging/homebrew/chapel-release.rb
66+
git commit -m "Update chapel-main.rb with changes from chapel.rb" --signoff
67+
git push --set-upstream origin update-chapel-homebrew-release-${{ env.HASH_SUBSTRING }}
68+
echo "Homebrew has updated the formula!"
69+
70+
- name: create pull request
71+
if: ${{ (env.file_changed == 'true') && (env.branch_exists == 'false') }}
72+
run: >
73+
gh pr create
74+
-B main
75+
-H update-chapel-homebrew-release-${{ env.HASH_SUBSTRING }}
76+
--title 'Update our copy of the released Homebrew formula'
77+
--body 'Homebrew released formula file hash is ${{ env.FILE_HASH }}. Created by Github action'
78+
env:
79+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)