-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into gebner_ocaml414
- Loading branch information
Showing
228 changed files
with
13,488 additions
and
8,989 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
|
||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Rebuild base image from scratch | ||
run: | | ||
|
@@ -41,8 +41,7 @@ jobs: | |
ci_docker_image_tag=fstar:update-base-test-$GITHUB_RUN_ID-$GITHUB_RUN_ATTEMPT | ||
echo "ci_docker_image_tag=$ci_docker_image_tag" >> $GITHUB_ENV | ||
CI_TARGET=uregressions | ||
docker build --no-cache -t $ci_docker_image_tag -f .docker/standalone.Dockerfile --build-arg FSTAR_CI_BASE=$TEMP_IMAGE_NAME --build-arg CI_TARGET="$CI_TARGET" --build-arg CI_THREADS=$(nproc) . |& tee BUILDLOG | ||
docker build --no-cache -t $ci_docker_image_tag -f .docker/standalone.Dockerfile --build-arg FSTAR_CI_BASE=$TEMP_IMAGE_NAME --build-arg CI_THREADS=$(nproc) . |& tee BUILDLOG | ||
ci_docker_status=$(docker run $ci_docker_image_tag /bin/bash -c 'cat $FSTAR_HOME/status.txt' || echo false) | ||
$ci_docker_status | ||
|
@@ -111,7 +110,8 @@ jobs: | |
- name: Post to the Slack channel | ||
if: ${{ always() }} | ||
id: slack | ||
uses: slackapi/[email protected] | ||
continue-on-error: true | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ env.CI_SLACK_CHANNEL }} | ||
payload: | | ||
|
This file contains 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 |
---|---|---|
|
@@ -34,15 +34,15 @@ jobs: | |
run: | | ||
echo "CI_INITIAL_TIMESTAMP=$(date '+%s')" >> $GITHUB_ENV | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Identify the notification channel | ||
run: | | ||
echo "CI_SLACK_CHANNEL=$(jq -c -r '.NotificationChannel' .docker/build/config.json)" >> $GITHUB_ENV | ||
- name: Set the refresh hints flag | ||
if: ${{ (github.event_name == 'workflow_dispatch') && inputs.ci_refresh_hints }} | ||
run: | | ||
# NOTE: this causes the build to record hints | ||
echo "CI_TARGET=uregressions-ulong" >> $GITHUB_ENV | ||
echo "CI_RECORD_HINTS_ARG=--build-arg CI_RECORD_HINTS=1" >> $GITHUB_ENV | ||
- name: Populate no karamel arg | ||
if: ${{ (github.event_name == 'workflow_dispatch') && inputs.ci_no_karamel }} | ||
run: | | ||
|
@@ -71,8 +71,7 @@ jobs: | |
run: | | ||
ci_docker_image_tag=fstar:local-run-$GITHUB_RUN_ID-$GITHUB_RUN_ATTEMPT | ||
echo "ci_docker_image_tag=$ci_docker_image_tag" >> $GITHUB_ENV | ||
if [[ -z $CI_TARGET ]] ; then CI_TARGET=uregressions ; fi | ||
docker build -t $ci_docker_image_tag -f .docker/standalone.Dockerfile --build-arg CI_BRANCH=$GITHUB_REF_NAME --build-arg CI_TARGET="$CI_TARGET" --build-arg RESOURCEMONITOR=$RESOURCEMONITOR --build-arg CI_THREADS=$(nproc) $CI_DO_NO_KARAMEL . |& tee BUILDLOG | ||
docker build -t $ci_docker_image_tag -f .docker/standalone.Dockerfile --build-arg CI_BRANCH=$GITHUB_REF_NAME --build-arg RESOURCEMONITOR=$RESOURCEMONITOR --build-arg CI_THREADS=$(nproc) $CI_RECORD_HINTS_ARG $CI_DO_NO_KARAMEL . |& tee BUILDLOG | ||
ci_docker_status=$(docker run $ci_docker_image_tag /bin/bash -c 'cat $FSTAR_HOME/status.txt' || echo false) | ||
if $ci_docker_status && [[ -z "$CI_SKIP_IMAGE_TAG" ]] ; then | ||
if ! { echo $GITHUB_REF_NAME | grep '/' ; } ; then | ||
|
@@ -117,7 +116,7 @@ jobs: | |
- name: Save resource monitor summary as artifact | ||
if: ${{ always () && vars.FSTAR_CI_RESOURCEMONITOR == '1' }} | ||
continue-on-error: true | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Resource usage information (summary) | ||
path: | | ||
|
@@ -126,7 +125,7 @@ jobs: | |
- name: Save resource monitor files as artifact | ||
if: ${{ always () && vars.FSTAR_CI_RESOURCEMONITOR == '1' }} | ||
continue-on-error: true | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Resource usage information (individual) | ||
path: | | ||
|
@@ -179,7 +178,8 @@ jobs: | |
- name: Post to the Slack channel | ||
if: ${{ always() }} | ||
id: slack | ||
uses: slackapi/[email protected] | ||
continue-on-error: true | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ env.CI_SLACK_CHANNEL }} | ||
payload: | | ||
|
This file contains 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 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 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 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 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"fstar_exe": "fstar.exe", | ||
"fstar_exe": "./bin/fstar.exe", | ||
"options": [ | ||
"--cache_dir", ".cache" | ||
], | ||
|
This file contains 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 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.