-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See [CHANGELOG](https://github.com/aws/jsii/blob/bump/1.11.0/CHANGELOG.md)
- Loading branch information
Showing
971 changed files
with
71,498 additions
and
65,104 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
extends: ./eslint-config.yaml | ||
root: true |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Workflows pertaining to the jsii/superchain Docker image | ||
name: Docker Images | ||
|
||
on: | ||
pull_request: | ||
branches: [main, master, release] | ||
# For PRs, only run if there are changes around the Dockerfile | ||
paths: ['superchain/**'] | ||
push: | ||
branches: [main, master, release] | ||
|
||
jobs: | ||
superchain: | ||
name: jsii/superchain | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v2 | ||
- name: Build Image | ||
run: |- | ||
docker build \ | ||
--pull \ | ||
--build-arg BUILD_TIMESTAMP="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \ | ||
--build-arg COMMIT_ID='${{ github.sha }}' \ | ||
--tag 'jsii/superchain:nightly' \ | ||
./superchain | ||
- name: Test Image | ||
run: |- | ||
docker run \ | ||
--rm \ | ||
--tty \ | ||
--network=host \ | ||
-v${{ github.workspace }}:${{ github.workspace }} \ | ||
-w${{ github.workspace }} \ | ||
'jsii/superchain:nightly' \ | ||
bash -c "yarn install --frozen-lockfile && yarn build && yarn test" | ||
- name: Dump Image | ||
run: |- | ||
docker image save 'jsii/superchain:nightly' \ | ||
> ${{ runner.temp }}/jsii-superchain.nightly.tar | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: 'jsii-superchain.nightly' | ||
path: ${{ runner.temp }}/jsii-superchain.nightly.tar |
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,6 @@ | ||
node_modules/ | ||
lerna-debug.log | ||
pip-wheel-metadata/ | ||
tsconfig.tsbuildinfo | ||
.DS_Store | ||
.idea | ||
|
Oops, something went wrong.