Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new commit for testing #34

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0495301
workflow
comcalvi Oct 19, 2023
6a9d344
add build step
comcalvi Oct 19, 2023
2a0ae6c
ne wcommit for testing
comcalvi Oct 19, 2023
3e48659
yaml syntax
comcalvi Oct 19, 2023
66efb2e
commit
comcalvi Oct 19, 2023
ed3d113
commit
comcalvi Oct 19, 2023
b79628e
commit
comcalvi Oct 19, 2023
740fd26
buildspec
comcalvi Oct 19, 2023
5e8941e
commit
comcalvi Oct 19, 2023
b9626b0
commit
comcalvi Oct 19, 2023
d66eaa9
buildspec
comcalvi Oct 19, 2023
684e6fa
buildspec
comcalvi Oct 19, 2023
25fa243
buildspec
comcalvi Oct 19, 2023
fba9677
buildspec
comcalvi Oct 19, 2023
fd74571
buildspec
comcalvi Oct 19, 2023
d2b02be
buildspec
comcalvi Oct 19, 2023
567a22b
buildspec
comcalvi Oct 19, 2023
c40cfca
buildspec
comcalvi Oct 19, 2023
50de637
for testing
comcalvi Oct 19, 2023
9e06959
use gh action
comcalvi Oct 19, 2023
7bb3c33
trigger a test run
comcalvi Oct 20, 2023
dcbb6d3
some change
comcalvi Oct 20, 2023
fb434b1
artifact names
comcalvi Oct 20, 2023
17fd9a6
buildspec artifacts
comcalvi Oct 21, 2023
fd37b65
buildspec artifacts
comcalvi Oct 21, 2023
2a49958
remove base dir entirely
comcalvi Oct 21, 2023
cd558ac
integ test change
comcalvi Oct 21, 2023
4687d00
pls work
comcalvi Oct 22, 2023
6f26353
I will be amazed if this does what I want it to...
comcalvi Oct 22, 2023
11e52c1
hopefuly it works...
comcalvi Oct 22, 2023
147de01
build force
comcalvi Oct 22, 2023
9948970
build
comcalvi Oct 22, 2023
fafa80c
skip pack.........
comcalvi Oct 22, 2023
cccf470
new commit...
comcalvi Oct 22, 2023
63d9777
github sha fix
comcalvi Oct 22, 2023
1799f45
restore integ runner functionality...
comcalvi Oct 23, 2023
f300eaa
skip tests, for demo
comcalvi Oct 23, 2023
775fe73
Merge branch 'main' into run-integ-tests
comcalvi Oct 23, 2023
a841754
remove asset tests, for demo purposes...
comcalvi Oct 23, 2023
c575386
delete
comcalvi Oct 23, 2023
6b2e2e1
fix...
comcalvi Oct 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 16 additions & 0 deletions .github/workflows/run-integ-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: run-integ-tests

on:
pull_request:
branches: [ "main" ]

jobs:
run-integ-tests:
environment: integ-test-workflow-env
name: run integ tests
runs-on: ubuntu-latest
steps:
- uses: comcalvi/run-integ-tests@main
with:
pr-number: ${{ github.event.number }}
commit-sha: ${{ github.event.pull_request.head.sha }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ the power of modern programming languages. Using the CDK’s library of
infrastructure constructs, you can easily encapsulate AWS best practices in your
infrastructure definition and share it without worrying about boilerplate logic.

The CDK is available in the following languages:
The CDK is available in the following languages;

* JavaScript, TypeScript ([Node.js ≥ 14.15.0](https://nodejs.org/download/release/latest-v14.x/))
* We recommend using a version in [Active LTS](https://nodejs.org/en/about/releases/)
Expand Down
6 changes: 3 additions & 3 deletions buildspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ phases:
- codebuild-breakpoint
- 'if ${BUMP_CANDIDATE:-false}; then env NODE_OPTIONS="--max-old-space-size=8196 ${NODE_OPTIONS:-}" /bin/bash ./scripts/bump-candidate.sh; fi'
- /bin/bash ./scripts/align-version.sh
- /bin/bash ./build.sh --ci
- /bin/bash ./build.sh --ci --skip-tests
post_build:
commands:
# Short-circuit: Don't run pack if the above build failed.
- '[ ${CODEBUILD_BUILD_SUCCEEDING:-0} -eq 1 ] || exit 1'
- "[ -f .BUILD_COMPLETED ] && /bin/bash ./pack.sh"
- "[ -f .BUILD_COMPLETED ]"
- /bin/bash ./scripts/cache-store.sh
artifacts:
files:
- "**/*"
base-directory: dist
name: "$CODEBUILD_SOURCE_VERSION/$CODEBUILD_RESOLVED_SOURCE_VERSION" # evalutes to "pr/<prNumber>/<commitHash>"
reports:
jest-tests:
files:
Expand Down
Loading
Loading