-
Notifications
You must be signed in to change notification settings - Fork 239
add support for ARM based platforms #300
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
Merged
Merged
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
f38ab09
add support for ARM based platforms
muellerc 5def05c
Merge branch 'master' into master
carlzogh 20a4a77
incorporated pr feedback
muellerc c0197c6
fixed build-jni-lib.sh script after refactoring it
muellerc 276981f
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc 5a3c2fd
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc 8c2bacc
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc 213b619
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc a8357a0
add support for ARM based platforms
muellerc 2413949
incorporated pr feedback
muellerc 1d39500
fixed build-jni-lib.sh script after refactoring it
muellerc 81112d9
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc fe7b9b2
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc b68425e
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc abdfdb3
incorporated feedback from https://github.com/aws/aws-lambda-java-lib…
muellerc 386f50c
Merge branch 'master' of https://github.com/muellerc/aws-lambda-java-…
muellerc fd59cb3
upgrade jacoco maven plugin from 0.8.6 to 0.8.7 to solve a build erro…
muellerc b876b25
update Dockerfile agent to use Java 8 again
muellerc 5f64ed1
Merge branch 'master' into master
carlzogh 5972fc8
Update RELEASE.CHANGELOG.md
carlzogh 82dbc9d
Update Dockerfile.agent
carlzogh 9bc66d9
Update UnknownPlatformException.java
carlzogh 20e29b6
Update java-core and maven-compiler-plugin, use CodeBuild image from ECR
carlzogh 37c2c7f
Stage RIC 2.1.0, change to use Public ECR base image for amazoncorret…
carlzogh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
11 changes: 11 additions & 0 deletions
11
...com/amazonaws/services/lambda/runtime/api/client/runtimeapi/UnknownPlatformException.java
This file contains hidden or 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,11 @@ | ||
package com.amazonaws.services.lambda.runtime.api.client.runtimeapi; | ||
|
||
/** | ||
* Copyright (c) 2019 Amazon. All rights reserved. | ||
carlzogh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
*/ | ||
public class UnknownPlatformException extends RuntimeException { | ||
|
||
public UnknownPlatformException(String message) { | ||
super(message); | ||
} | ||
} |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.