Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
dfdd10d
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
cd61d18
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
1db59d6
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
8c15042
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
d5a5355
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
770e185
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
19dc806
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
feb3806
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
e416420
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
90de1b7
Update CONTRIBUTING.md
varunmoris Mar 11, 2025
0b556da
Create buildspec.yml
varunmoris Mar 12, 2025
744084f
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
45d6f66
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
a379079
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
8c459ce
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
c185abc
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
ed18629
Update buildspec.yml
varunmoris Mar 12, 2025
ddf8a88
Update buildspec.yml
varunmoris Mar 12, 2025
afc4476
Update buildspec.yml
varunmoris Mar 12, 2025
2df2382
Update buildspec.yml
varunmoris Mar 12, 2025
4a00162
Update buildspec.yml
varunmoris Mar 12, 2025
fecf3f9
Update buildspec.yml
varunmoris Mar 12, 2025
a8d2768
Update buildspec.yml
varunmoris Mar 12, 2025
b3cd7a1
Update buildspec.yml
varunmoris Mar 12, 2025
079a5fd
Update buildspec.yml
varunmoris Mar 12, 2025
9d0dbbb
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
6143924
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
ead8e9c
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
397591b
Update buildspec.yml
varunmoris Mar 12, 2025
0763ef4
Update buildspec.yml
varunmoris Mar 12, 2025
ed10eeb
Update CONTRIBUTING.md
varunmoris Mar 12, 2025
aaca372
Update buildspec.yml
varunmoris Mar 12, 2025
18a0ef6
Update buildspec.yml
varunmoris Mar 12, 2025
17adda1
Update buildspec.yml
varunmoris Mar 12, 2025
e30d009
Update buildspec.yml
varunmoris Mar 12, 2025
728cfd2
Update buildspec.yml
varunmoris Mar 13, 2025
81665bd
Update buildspec.yml
varunmoris Mar 13, 2025
1839fa8
test
varunmoris Mar 13, 2025
81da7ae
Merge branch 'master' into test-hook
varunmoris Mar 13, 2025
a6bf059
Update CONTRIBUTING.md
varunmoris Mar 13, 2025
ff9969c
test
varunmoris Mar 13, 2025
2a545f3
test
varunmoris Mar 13, 2025
cbcd432
test
varunmoris Mar 13, 2025
3980d92
test
varunmoris Mar 13, 2025
ff0e3fc
test
varunmoris Mar 13, 2025
a71a6af
test
varunmoris Mar 13, 2025
65572f6
test
varunmoris Mar 13, 2025
bc75f96
test
varunmoris Mar 13, 2025
9e38582
test
varunmoris Mar 13, 2025
213cac4
test
varunmoris Mar 13, 2025
a19e1fc
test
varunmoris Mar 13, 2025
4436570
test
varunmoris Mar 13, 2025
d385e91
test
varunmoris Mar 13, 2025
c9ec978
test
varunmoris Mar 13, 2025
4b8dc07
test
varunmoris Mar 13, 2025
eab6ad2
test
varunmoris Mar 13, 2025
b019116
test
varunmoris Mar 13, 2025
afdb731
test
varunmoris Mar 13, 2025
9991947
test
varunmoris Mar 13, 2025
ddbec44
test
varunmoris Mar 13, 2025
312382e
test
varunmoris Mar 13, 2025
43f4473
chore: patch libsoup package
varunmoris May 7, 2025
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
21 changes: 21 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Please read through this document before submitting any issues or pull requests
information to effectively respond to your bug report or contribution.



## Reporting Bugs/Feature Requests

We welcome you to use the GitHub issue tracker to report bugs or suggest features.
Expand All @@ -20,6 +21,9 @@ reported the issue. Please try to include as much information as you can. Detail
* Anything unusual about your environment or deployment





## Contributing via Pull Requests
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:

Expand Down Expand Up @@ -58,4 +62,21 @@ If you discover a potential security issue in this project we ask that you notif

See the [LICENSE](https://github.com/aws/amazon-sagemaker-sklearn-container/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.


We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
















45 changes: 45 additions & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
version: 0.2

phases:
install:
runtime-versions:
python: 3.10
commands:
- pip install pytest

build:
commands:
- echo "Running tests..."
- |
cat << EOF > test_sample.py
def test_sample():
assert True
EOF
- pytest --junitxml=test-results.xml test_sample.py

post_build:
commands:
- |
if [ $CODEBUILD_BUILD_SUCCEEDING = 1 ]; then
echo "Build succeeded"
else
echo "Build failed"
exit 1
fi

reports:
status:
file-format: JUNITXML
files:
- test-results.xml
discard-paths: no
scikit-learn-test-status:
file-format: JUNITXML
files:
- test-results.xml
discard-paths: no

artifacts:
files:
- test-results.xml
name: test-results
1 change: 1 addition & 0 deletions docker/1.2-1/base/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ RUN apt-get update && \
apparmor\
libgstreamer1.0-0 \
linux-libc-dev \
libsoup2.4-1 \
&& \
# MLIO build dependencies
# Official Ubuntu APT repositories do not contain an up-to-date version of CMake required to build MLIO.
Expand Down