Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nviennot committed Aug 17, 2020
0 parents commit 398ab36
Show file tree
Hide file tree
Showing 54 changed files with 5,643 additions and 0 deletions.
Binary file added .github/fastfreeze-logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build fastfreeze.tar.xz
run: scripts/build.sh
- name: Run tests
run: scripts/run_tests.sh
- name: Upload fastfreeze.tar.xz
uses: actions/upload-artifact@v2
with:
name: fastfreeze.tar.xz
path: |
fastfreeze.tar.xz
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
target/
dist/
*.tar.*
15 changes: 15 additions & 0 deletions .gitmodules
@@ -0,0 +1,15 @@
[submodule "deps/criu-image-streamer"]
path = deps/criu-image-streamer
url = https://github.com/twosigma/criu-image-streamer.git
[submodule "deps/libvirttime"]
path = deps/libvirttime
url = https://github.com/twosigma/libvirttime.git
[submodule "deps/libvirtcpuid"]
path = deps/libvirtcpuid
url = https://github.com/twosigma/libvirtcpuid.git
[submodule "deps/criu"]
path = deps/criu
url = https://github.com/twosigma/criu
[submodule "deps/set_ns_last_pid"]
path = deps/set_ns_last_pid
url = https://github.com/twosigma/set_ns_last_pid.git

0 comments on commit 398ab36

Please sign in to comment.