-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/development'
- Loading branch information
Showing
106 changed files
with
13,668 additions
and
1,593 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,33 @@ | ||
name: Build Application Function | ||
|
||
on: | ||
push: | ||
branches: [ development ] | ||
schedule: | ||
- cron: '0 0 * * 0' # Executes every Sunday at midnight UT | ||
jobs: | ||
ubuntu-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
check-latest: true | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install ninja-build build-essential flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev libbson-dev libyaml-dev libnghttp2-dev libmicrohttpd-dev libcurl4-gnutls-dev libnghttp2-dev libtins-dev libtalloc-dev meson curl wget default-jdk | ||
python -m pip install build | ||
- name: Build | ||
run: | | ||
meson build | ||
ninja -C build | ||
- name: Install | ||
working-directory: build | ||
run : sudo meson install --no-rebuild | ||
- name: Run | ||
run: /usr/local/bin/open5gs-msafd -h |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"reportingInterval": 10, | ||
"locationReporting": false, | ||
"accessReporting": false, | ||
"samplePercentage": 90 | ||
} |
4 changes: 2 additions & 2 deletions
4
...iguration_Big-Buck-Bunny_pull-ingest.json → ...guration_Elephants-Dream_pull-ingest.json
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
4 changes: 2 additions & 2 deletions
4
...unny_pull-ingest_http_and_https.json.tmpl → ...ream_pull-ingest_http_and_https.json.tmpl
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
4 changes: 2 additions & 2 deletions
4
...ig-Buck-Bunny_pull-ingest_https.json.tmpl → ...ephants-Dream_pull-ingest_https.json.tmpl
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"externalReference": "policy-external-ref-1", | ||
"applicationSessionContext": { | ||
"sliceInfo": { | ||
"sst": 1, | ||
"sd": "000001" | ||
}, | ||
"dnn": "internet" | ||
}, | ||
"qoSSpecification": { | ||
"qosReference": "qos-1", | ||
"maxAuthBtrUl": "200 Kbps", | ||
"maxAuthBtrDl": "20 Mbps", | ||
"defPacketLossRateDl": 0, | ||
"defPacketLossRateUl": 0 | ||
}, | ||
"chargingSpecification": { | ||
"sponId": "sponsor-id-1", | ||
"sponStatus": "SPONSOR_ENABLED", | ||
"gpsi": ["msisdn-441234567890"] | ||
} | ||
} |
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,22 @@ | ||
{ | ||
"externalReference": "policy-external-ref-1", | ||
"applicationSessionContext": { | ||
"sliceInfo": { | ||
"sst": 1, | ||
"sd": "000001" | ||
}, | ||
"dnn": "internet" | ||
}, | ||
"qoSSpecification": { | ||
"qosReference": "qos-1", | ||
"maxAuthBtrUl": "400 Kbps", | ||
"maxAuthBtrDl": "40 Mbps", | ||
"defPacketLossRateDl": 10, | ||
"defPacketLossRateUl": 20 | ||
}, | ||
"chargingSpecification": { | ||
"sponId": "sponsor-id-2", | ||
"sponStatus": "SPONSOR_ENABLED", | ||
"gpsi": ["msisdn-447000123456"] | ||
} | ||
} |
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,22 @@ | ||
{ | ||
"externalReference": "policy-external-ref-2", | ||
"applicationSessionContext": { | ||
"sliceInfo": { | ||
"sst": 1, | ||
"sd": "000001" | ||
}, | ||
"dnn": "internet" | ||
}, | ||
"qoSSpecification": { | ||
"qosReference": "qos-2", | ||
"maxAuthBtrUl": "300 Kbps", | ||
"maxAuthBtrDl": "30 Mbps", | ||
"defPacketLossRateDl": 5, | ||
"defPacketLossRateUl": 10 | ||
}, | ||
"chargingSpecification": { | ||
"sponId": "sponsor-id-3", | ||
"sponStatus": "SPONSOR_ENABLED", | ||
"gpsi": ["msisdn-447000654321"] | ||
} | ||
} |
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.