-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into rasi_generator
- Loading branch information
Showing
218 changed files
with
5,564 additions
and
4,007 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Before merging this PR, please check the following: | ||
Checklist: <!-- Please first submit your pull request, you can check the checkboxes later. Feel free to ask for help if you don't know how/where to make changes. --> | ||
|
||
- [ ] I made sure the wiki is updated in accordance with the changes in this PR. For example, syntax changes, semantics changes, VerCors flags changes, etc. | ||
- [ ] The wiki is updated in accordance with the changes in this PR. For example: syntax changes, semantics changes, VerCors flags changes, etc. | ||
|
||
# PR description | ||
|
||
_Describe the motivation of the PR and the changes it introduces. Why is it needed, and what does it change?_ | ||
<!-- Describe the motivation of the PR and the changes it introduces. Why is it needed, and what does it change? --> |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: '(Pre)-Release' | ||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- 'dev' | ||
tags: | ||
- 'v[0-9]*' | ||
|
||
jobs: | ||
Release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout VerCors | ||
uses: actions/checkout@v2 | ||
- name: Set Pre-release Tag | ||
if: github.ref_name == 'dev' | ||
run: | | ||
git tag -f dev-prerelease | ||
git push origin --tags --force | ||
- name: Install Java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
- name: Build Release | ||
run: ./mill -j 0 vercors.main.release | ||
- name: Set Properties | ||
id: props | ||
run: ./mill vercors.main.githubReleaseOutputs >> "$GITHUB_OUTPUT" | ||
- name: Delete Previous Pre-release | ||
uses: liudonghua123/delete-release-action@v1 | ||
if: github.ref_name == 'dev' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
suppress_errors: true | ||
release_name: 'VerCors Nightly' | ||
- name: Create Release | ||
id: release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
name: ${{ steps.props.outputs.RELEASE_NAME }} | ||
tag_name: ${{ steps.props.outputs.TAG_NAME }} | ||
body: ${{ steps.props.outputs.BODY }} | ||
draft: false | ||
prerelease: ${{ steps.props.output.PRERELEASE }} | ||
files: | | ||
out/vercors/main/unixTar.dest/*.tar.xz | ||
out/vercors/main/macosTar.dest/*.tar.xz | ||
out/vercors/main/winZip.dest/*.zip | ||
out/vercors/main/deb.dest/*.deb |
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,4 +1,5 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
set -e | ||
ROOT=$(dirname $(dirname $(readlink -f $0))) | ||
(cd $ROOT; ./mill vercors.main.runScript) | ||
$ROOT/out/vercors/main/runScript.dest/bashOptions "$@" | ||
(cd $ROOT; ./mill -j 0 vercors.main.runScript) | ||
$ROOT/out/vercors/main/runScript.dest/bashOptions "$@" |
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,4 +1,5 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
set -e | ||
ROOT=$(dirname $(dirname $(readlink -f $0))) | ||
(cd $ROOT; ./mill vercors.main.runScript) | ||
$ROOT/out/vercors/main/runScript.dest/vercors "$@" | ||
(cd $ROOT; ./mill -j 0 vercors.main.runScript) | ||
$ROOT/out/vercors/main/runScript.dest/vercors "$@" |
Oops, something went wrong.