Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4d09059
Updated to the latest version of typescript, added some util assertio…
afinch7 Dec 30, 2018
c855d4e
Basic framework for modular module resolvers.
afinch7 Dec 30, 2018
8b3e429
Huge revision to initial modular resolver system, and started on conv…
afinch7 Jan 13, 2019
afa09c1
Refactored dev-tools compiler to work with new module resolver system…
afinch7 Jan 14, 2019
065ba57
Added support for search and hash url data in fileName-originUrl conv…
afinch7 Jan 14, 2019
9aec9fb
Added path parsing to json secrets loader.
afinch7 Jan 15, 2019
ee0d5fd
Fixed a simple issue with typescript lang service implementation, and…
afinch7 Jan 15, 2019
0c4a019
Merge branch 'master' into master
afinch7 Jan 15, 2019
b9f4471
Fixed a few issues present after merge, and recompiled flatbuffers code.
afinch7 Jan 15, 2019
e54c38c
Updated runtime creation in distributed-fly to work with new parameters.
afinch7 Jan 15, 2019
a3fd075
Updated flatbuffers generated code.
afinch7 Jan 15, 2019
a3a0612
Moved control of specifier url parsing to resolvers for more flexibil…
afinch7 Jan 16, 2019
12ab573
Several misc changes decided on via code review.
afinch7 Jan 16, 2019
ec89f43
Fixed this typo.
afinch7 Jan 16, 2019
1d5e738
Fixed references and implmentations of typo function name `resovle_mo…
afinch7 Jan 16, 2019
cfa4b5c
Update yarn.lock
michaeldwan Jan 17, 2019
bcd780e
Regenerate flatbuffers messages
michaeldwan Jan 17, 2019
3fb60c0
Merge branch 'master' into pr/afinch7/20
michaeldwan Jan 17, 2019
b033ed8
Fix compiler errors, bonus rustfmt
michaeldwan Jan 18, 2019
6b2a52e
Laying the groundwork for runtime to runtime communications, and even…
afinch7 Feb 8, 2019
5ba6d74
Merged master@afinch7/fly.rs into master@superfly/fly.rs.
afinch7 Feb 11, 2019
57a71f5
Mostly finished runtime to runtime messaging. Just need to sort out a…
afinch7 Feb 11, 2019
6849c02
Fixed some remaining issues with service runtimes, and implemented an…
afinch7 Feb 12, 2019
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: 10 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
steps:
- commands:
- docker build --build-arg BUILD_VERSION=$BUILDKITE_COMMIT --build-arg AWS_ACCESS_KEY_ID=AKIAIUEJ6IB7XWPIBUXA --build-arg AWS_SECRET_ACCESS_KEY -t fly:$BUILDKITE_COMMIT .
- docker run --name fly_$BUILDKITE_COMMIT fly:$BUILDKITE_COMMIT /fly --help
- docker cp fly_$BUILDKITE_COMMIT:/fly . && docker cp fly_$BUILDKITE_COMMIT:/fly-dist .
- docker rm fly_$BUILDKITE_COMMIT
- tar -czf fly-linux-x64-static.tar.gz fly fly-dist
- aws s3 cp fly-linux-x64-static.tar.gz s3://fly-proxy/$BUILDKITE_BRANCH/ --acl public-read
artifact_paths:
- ./*.tar.gz
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
target
.envrc
libfly/v8
*.db
*.bin
.dockerignore
Dockerfile
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
msg_generated.ts linguist-generated=true
msg_generated.rs linguist-generated=true
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: rust
rust:
- 1.31.1
- stable
matrix:
include:
- os: linux
Expand All @@ -18,7 +18,7 @@ services:
env:
global:
- AWS_ACCESS_KEY_ID=AKIAIUEJ6IB7XWPIBUXA
- SCCACHE_VERSION=0.2.7
- SCCACHE_VERSION=0.2.8
- SCCACHE_BUCKET=fly-proxy-sccache
- RUSTUP_HOME=$HOME/.rustup/

Expand Down Expand Up @@ -75,7 +75,8 @@ before_script:
createuser -s postgres; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew services start redis; fi
script:
- RUST_BACKTRACE=1 cargo test
- RUST_BACKTRACE=1 cargo test --features openssl_vendored
- RUST_BACKTRACE=1 cargo run --features openssl_vendored --bin fly test "v8env/tests/**/*.spec.*"
- "./scripts/build-release.sh"
- sccache --stop-server
before_cache:
Expand Down
Loading