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

Binary canary config #5726

Merged
merged 30 commits into from
Aug 5, 2023
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
792c6da
chore: Update CFN Lint version to support python 3.11 (#5651)
ConnorKirk Jul 31, 2023
e0de998
fix: Require file label to run before maintainers (#5656)
lucashuy Jul 31, 2023
d264edd
chore: update aws_lambda_builders to 1.36.0 (#5655)
github-actions[bot] Aug 1, 2023
253852c
fix(invoke): Write in UTF-8 string instead of bytes (#5642)
jfuss Aug 1, 2023
27eb2e1
chore(deps): bump cryptography from 41.0.2 to 41.0.3 in /requirements…
dependabot[bot] Aug 2, 2023
135da3a
fix(test): Force reading file with utf8 in tests for windows (#5679)
jfuss Aug 2, 2023
b282ceb
fix(test): Increase max execution time for timeout tests (#5680)
jfuss Aug 2, 2023
8b67713
chore: auto update reproducible requirements when there is a dependen…
mndeveci Aug 3, 2023
1af6375
fix: Repair failing integration test (#5698)
Leo10Gama Aug 3, 2023
e858489
fix: link the API gateway resource parent to either rest api or anoth…
moelasmar Aug 3, 2023
6733ccd
fix: Delete stacks in REVIEW_IN_PROGRESS (#5687)
lucashuy Aug 4, 2023
b33386d
test: AppVeyor Jobs Running Against Nightly Binaries
mildaniel Aug 4, 2023
8d67f0d
fix: supporting nested apis for v1 method, integration, and integrati…
moelasmar Aug 4, 2023
f87d9be
Install deps into a virtual env
mildaniel Aug 4, 2023
af78938
Merge branch 'test/binary-canaries' into binary-canary-config
mildaniel Aug 5, 2023
e217f3f
Fix Windows test failure
mildaniel Aug 5, 2023
24640ab
Merge branch 'binary-canary-config' of github.com:mildaniel/aws-sam-c…
mildaniel Aug 5, 2023
d648431
Fix install
mildaniel Aug 5, 2023
fdadc63
Merge branch 'develop' into binary-canary-config
mildaniel Aug 5, 2023
c0ae21e
Merge branch 'test/binary-canaries' into binary-canary-config
mildaniel Aug 5, 2023
57c30a5
Fix install
mildaniel Aug 5, 2023
d914ed4
Merge branch 'binary-canary-config' of github.com:mildaniel/aws-sam-c…
mildaniel Aug 5, 2023
257313b
Fix install
mildaniel Aug 5, 2023
968fe1c
Merge branch 'test/binary-canaries' into binary-canary-config
mildaniel Aug 5, 2023
458d3b1
Fix install
mildaniel Aug 5, 2023
e400c8f
Fix conflict
mildaniel Aug 5, 2023
8043637
Merge branch 'test/binary-canaries' into binary-canary-config
mildaniel Aug 5, 2023
737019b
Fix conflict
mildaniel Aug 5, 2023
1074999
Merge branch 'binary-canary-config' of github.com:mildaniel/aws-sam-c…
mildaniel Aug 5, 2023
f5a9379
Merge branch 'test/binary-canaries' into binary-canary-config
mildaniel Aug 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions appveyor-linux-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ install:
- sh: "PATH=$PATH:$HOME/venv3.7/bin:$HOME/venv3.8/bin:$HOME/venv3.9/bin:$HOME/venv3.10/bin"

# Install pytest
- sh: "python3.9 -m venv pytest"
- sh: "./pytest/bin/python3 -m pip install -r requirements/pre-dev.txt"
- sh: "./pytest/bin/python3 -m pip install -r requirements/dev.txt"
- sh: "./pytest/bin/python3 -m pip install -r requirements/base.txt"
- sh: "PATH=$(echo $PWD'/pytest/bin'):$PATH"
- sh: "python3.9 -m venv $HOME/pytest"
- sh: "$HOME/pytest/bin/python3 -m pip install -r requirements/pre-dev.txt"
- sh: "$HOME/pytest/bin/python3 -m pip install -r requirements/dev.txt"
- sh: "$HOME/pytest/bin/python3 -m pip install -r requirements/base.txt"
- sh: "PATH=$HOME/pytest/bin:$PATH"
- sh: "pytest --version"

# update ca-certificates which causes failures with newest golang library
Expand Down
Loading