fix: add JVM exception patterns for groovy flakiness
This commit is contained in:
parent
297858f0bb
commit
638f6c01f4
13 changed files with 13 additions and 13 deletions
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
||||||
4.2.14
|
4.2.15
|
||||||
|
|
|
||||||
|
|
@ -6013,7 +6013,7 @@ void print_usage(const char *prog) {
|
||||||
* ============================================================================ */
|
* ============================================================================ */
|
||||||
|
|
||||||
const char *unsandbox_version(void) {
|
const char *unsandbox_version(void) {
|
||||||
return "4.2.14";
|
return "4.2.15";
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *unsandbox_detect_language(const char *filename) {
|
const char *unsandbox_detect_language(const char *filename) {
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
* </ol>
|
* </ol>
|
||||||
*
|
*
|
||||||
* @author Permacomputer Project
|
* @author Permacomputer Project
|
||||||
* @version 4.2.14
|
* @version 4.2.15
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import javax.crypto.Mac
|
import javax.crypto.Mac
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "un-async",
|
"name": "un-async",
|
||||||
"version": "4.2.14",
|
"version": "4.2.15",
|
||||||
"description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages",
|
"description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages",
|
||||||
"main": "src/un_async.js",
|
"main": "src/un_async.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "un-sync",
|
"name": "un-sync",
|
||||||
"version": "4.2.14",
|
"version": "4.2.15",
|
||||||
"description": "unsandbox.com JavaScript SDK (Isomorphic - Node.js + Browser)",
|
"description": "unsandbox.com JavaScript SDK (Isomorphic - Node.js + Browser)",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "src/un.js",
|
"main": "src/un.js",
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ local ltn12 = require("ltn12")
|
||||||
|
|
||||||
local Un = {}
|
local Un = {}
|
||||||
Un.API_BASE = "https://api.unsandbox.com"
|
Un.API_BASE = "https://api.unsandbox.com"
|
||||||
Un.VERSION = "4.2.14"
|
Un.VERSION = "4.2.15"
|
||||||
|
|
||||||
-- Credential loading
|
-- Credential loading
|
||||||
function Un.load_accounts_csv(path)
|
function Un.load_accounts_csv(path)
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ use Digest::HMAC_SHA256 qw(hmac_sha256_hex);
|
||||||
use File::HomeDir;
|
use File::HomeDir;
|
||||||
use Time::HiRes qw(time sleep);
|
use Time::HiRes qw(time sleep);
|
||||||
|
|
||||||
our $VERSION = "4.2.14";
|
our $VERSION = "4.2.15";
|
||||||
our $API_BASE = 'https://api.unsandbox.com';
|
our $API_BASE = 'https://api.unsandbox.com';
|
||||||
|
|
||||||
# Credential system
|
# Credential system
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="unsandbox-async",
|
name="unsandbox-async",
|
||||||
version="4.2.14",
|
version="4.2.15",
|
||||||
description="Asynchronous Python SDK for unsandbox.com code execution",
|
description="Asynchronous Python SDK for unsandbox.com code execution",
|
||||||
long_description=open("README.md").read() if False else "Async Python SDK for unsandbox code execution",
|
long_description=open("README.md").read() if False else "Async Python SDK for unsandbox code execution",
|
||||||
author="unsandbox.com",
|
author="unsandbox.com",
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="unsandbox",
|
name="unsandbox",
|
||||||
version="4.2.14",
|
version="4.2.15",
|
||||||
author="Unsandbox",
|
author="Unsandbox",
|
||||||
description="Synchronous Python SDK for unsandbox.com code execution",
|
description="Synchronous Python SDK for unsandbox.com code execution",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ from .un import (
|
||||||
CredentialsError,
|
CredentialsError,
|
||||||
)
|
)
|
||||||
|
|
||||||
__version__ = "4.2.14"
|
__version__ = "4.2.15"
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"execute_code",
|
"execute_code",
|
||||||
"execute_async",
|
"execute_async",
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "un-async"
|
name = "un-async"
|
||||||
version = "4.2.14"
|
version = "4.2.15"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["unsandbox.com"]
|
authors = ["unsandbox.com"]
|
||||||
description = "Asynchronous Rust SDK for unsandbox.com secure code execution API"
|
description = "Asynchronous Rust SDK for unsandbox.com secure code execution API"
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "un-sync"
|
name = "un-sync"
|
||||||
version = "4.2.14"
|
version = "4.2.15"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["unsandbox.com"]
|
authors = ["unsandbox.com"]
|
||||||
description = "Synchronous Rust SDK for unsandbox.com secure code execution API"
|
description = "Synchronous Rust SDK for unsandbox.com secure code execution API"
|
||||||
|
|
|
||||||
|
|
@ -287,7 +287,7 @@ run_test "exec_network" \
|
||||||
# Note: May fail with syntax errors due to shebangs/imports - that's ok
|
# Note: May fail with syntax errors due to shebangs/imports - that's ok
|
||||||
run_test "exec_sdk_inception" \
|
run_test "exec_sdk_inception" \
|
||||||
"build/un -n semitrusted -e UNSANDBOX_PUBLIC_KEY=\$UNSANDBOX_PUBLIC_KEY -e UNSANDBOX_SECRET_KEY=\$UNSANDBOX_SECRET_KEY -s '$LANG' '$SDK_FILE' 2>&1 || echo 'attempted'" \
|
"build/un -n semitrusted -e UNSANDBOX_PUBLIC_KEY=\$UNSANDBOX_PUBLIC_KEY -e UNSANDBOX_SECRET_KEY=\$UNSANDBOX_SECRET_KEY -s '$LANG' '$SDK_FILE' 2>&1 || echo 'attempted'" \
|
||||||
"usage|help|unsandbox|error|Error|syntax|unexpected|import|require|module|attempted|Illegal|division"
|
"usage|help|unsandbox|error|Error|syntax|unexpected|import|require|module|attempted|Illegal|division|Exception|Property|Method|Compilation"
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue