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
#!/bin/bash | |
# | |
# Set up a fresh Ubuntu 20.04 box with packages for building Agora. | |
# This does not include installing Intel compilers and FlexRAN | |
sudo apt -y update | |
# Toolchain | |
sudo apt -y install g++ cmake make | |
# General libs |
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
query GetRepoCommits( | |
$owner: String!, $name: String!, | |
$commit_num: Int!, $commit_cursor: String | |
) { | |
repository(owner:$owner, name:$name) { | |
defaultBranchRef { | |
name | |
target { | |
... on Commit { | |
history(first: $commit_num, after: $commit_cursor) { |