-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* typesafe supported runtimes * update docs * Document the default runtime and how to change it. Signed-off-by: David Calavera <[email protected]> * Disable fleaky tests. Signed-off-by: David Calavera <[email protected]> * Run tests serially. Signed-off-by: David Calavera <[email protected]> * chore: self mutation Signed-off-by: github-actions <[email protected]> * Remove self-mutating tasks. Signed-off-by: David Calavera <[email protected]> --------- Signed-off-by: David Calavera <[email protected]> Signed-off-by: github-actions <[email protected]> Co-authored-by: Christian Hoffmann <[email protected]> Co-authored-by: github-actions <[email protected]>
- Loading branch information
1 parent
f44cc1a
commit 255a906
Showing
8 changed files
with
899 additions
and
943 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 |
---|---|---|
|
@@ -49,24 +49,7 @@ jobs: | |
- name: Install dependencies | ||
run: npx projen install:ci | ||
- name: build | ||
run: npx projen build | ||
- name: Find mutations | ||
id: self_mutation | ||
run: |- | ||
git add . | ||
git diff --staged --patch --exit-code > .repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT | ||
- name: Upload patch | ||
if: steps.self_mutation.outputs.self_mutation_happened | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: .repo.patch | ||
path: .repo.patch | ||
- name: Fail build on mutation | ||
if: steps.self_mutation.outputs.self_mutation_happened | ||
run: |- | ||
echo "::error::Files were changed during build (see build log). If this was triggered from a fork, you will need to update your branch." | ||
cat .repo.patch | ||
exit 1 | ||
run: npx projen build --verbose | ||
- name: Backup artifact permissions | ||
run: cd dist && getfacl -R . > permissions-backup.acl | ||
continue-on-error: true | ||
|
@@ -75,35 +58,7 @@ jobs: | |
with: | ||
name: build-artifact | ||
path: dist | ||
self-mutation: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
if: always() && needs.build.outputs.self_mutation_happened && !(github.event.pull_request.head.repo.full_name != github.repository) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
- name: Download patch | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: .repo.patch | ||
path: ${{ runner.temp }} | ||
- name: Apply patch | ||
run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' | ||
- name: Set git identity | ||
run: |- | ||
git config user.name "github-actions" | ||
git config user.email "[email protected]" | ||
- name: Push changes | ||
run: |2- | ||
git add . | ||
git commit -s -m "chore: self mutation" | ||
git push origin HEAD:${{ github.event.pull_request.head.ref }} | ||
|
||
package-js: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.