We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b607d8 + 569535f commit daa4178Copy full SHA for daa4178
.github/workflows/build-and-test-Xen.yml
@@ -0,0 +1,26 @@
1
+name: Build and Test Xen
2
+
3
+on: [push]
4
5
+jobs:
6
+ Linux:
7
8
+ runs-on: ubuntu-18.04
9
10
+ steps:
11
+ - name: Install Packages
12
+ run: sudo apt-get install coreutils \
13
+ build-essential gcc git make flex bison \
14
+ software-properties-common libwww-perl python \
15
+ bin86 gdb bcc liblzma-dev python-dev gettext iasl \
16
+ uuid-dev libncurses5-dev libncursesw5-dev pkg-config \
17
+ libgtk2.0-dev libyajl-dev sudo time
18
19
+ - uses: actions/checkout@v1
20
21
+ - name: build CBMC tools
22
+ run: make -C src minisat2-download
23
+ run: make -C src cbmc.dir goto-cc.dir goto-diff.dir
24
25
+ - name: get Xen 4.13
26
+ run: git clone git://xenbits.xen.org/xen.git xen_4_13 && cd xen_4_13 && git reset --hard RELEASE-4.13.0
0 commit comments