-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from qzhuyan/dev/william/compile-msquic-2.0
msquic 2.0
- Loading branch information
Showing
43 changed files
with
1,509 additions
and
1,117 deletions.
There are no files selected for viewing
This file contains 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,16 @@ | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v2 | ||
|
||
- name: Publish to Hex.pm | ||
uses: erlangpack/github-action@v1 | ||
env: | ||
HEX_API_KEY: ${{ secrets.HEX_API_KEY }} |
This file contains 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 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 |
---|---|---|
|
@@ -19,6 +19,7 @@ _checkouts/ | |
|
||
# nif dynamic linked lib | ||
priv/*.so | ||
priv/*lttng.* | ||
priv/*.dylib | ||
|
||
# language server caches | ||
|
This file contains 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,28 @@ | ||
# BUILD on ubuntu 20.04 | ||
|
||
## Install build chain | ||
|
||
```sh | ||
sudo apt-add-repository ppa:lttng/stable-2.13 | ||
sudo apt-get update | ||
sudo apt-get install -y lttng-tools lttng-modules-dkms babeltrace liblttng-ust-dev build-essential cmake | ||
``` | ||
|
||
## Install OTP | ||
``` | ||
wget https://packages.erlang-solutions.com/erlang/debian/pool/esl-erlang_24.3.3-1~ubuntu~focal_amd64.deb | ||
sudo apt install ./esl-erlang_24.3.3-1~ubuntu~focal_amd64.deb | ||
``` | ||
|
||
## Fetch rebar3 | ||
|
||
``` bash | ||
wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3 | ||
export PATH=$PATH:./ | ||
``` | ||
|
||
## then | ||
|
||
```bash | ||
make | ||
``` |
This file contains 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 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 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
Oops, something went wrong.