Skip to content

Commit

Permalink
prepare for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
chengniansun committed Nov 7, 2023
1 parent 6496a9f commit 99e8a49
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@ jobs:
run: |
bazel build //src/... //antlropt/... //test/... //copyright/...
- name: Test Toy Benchmarks
run: |
bazel test //test/org/perses/benchmark_toys/...
- name: Test Reducers
run: |
bazel test //test/org/perses/reduction/...
- name: Test Antlr OPT
run: |
bazel test //antlropt/...
- name: Test Pair-Wise Program Reduction
run: |
bazel test //ppr/...
#- name: Test
# run: |
# ./scripts/presubmit.sh
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
![CI](https://github.com/uw-pluverse/perses/actions/workflows/main.yml/badge.svg)
# Perses: Syntax-Directed Program Reduction

Perses is a language-agnostic program reducer to minimize a program with
Expand Down
2 changes: 1 addition & 1 deletion scripts/copy_to_public_repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ for entry in $(git -C "$PUBLIC_REPO_DIR" ls-tree --name-only HEAD); do
done

for entry in $(find . -maxdepth 1 -type f); do
cp "${entry}" "${PUBLIC_REPO_DIR}/"
cp -f "${entry}" "${PUBLIC_REPO_DIR}/"
done
echo
echo "Done."
2 changes: 1 addition & 1 deletion version/org/perses/version/VersionClassGenerator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import kotlin.io.path.writeText
object VersionClassGenerator {

private const val MAJOR_VERSION = "1"
private const val MINOR_VERSION = "6"
private const val MINOR_VERSION = "7"

@JvmStatic
fun generate(args: Array<String>) {
Expand Down

0 comments on commit 99e8a49

Please sign in to comment.