-
Notifications
You must be signed in to change notification settings - Fork 105
81 lines (60 loc) · 2.07 KB
/
ci-build-intel.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Build using Intel drivers
on:
push:
branches: [ master, dev*, ow* ]
pull_request:
branches: [ master, dev, ow* ]
jobs:
build:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
runs-on: [ ubuntu-latest, ubuntu-20.04 ]
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- name: Install Intel OpenCL libraries needed for Sibernetic
run: |
lscpu
echo "Installing OpenCL Drivers"
# Based on: https://github.com/openworm/OpenWorm/blob/master/Dockerfile
mkdir intel-opencl-tmp
cd intel-opencl-tmp
mkdir intel-opencl
wget https://github.com/openworm/OpenWorm/raw/dev_inte/SRB5.0_linux64.zip
unzip SRB5.0_linux64.zip
tar -C intel-opencl -Jxf intel-opencl-r5.0-63503.x86_64.tar.xz
tar -C intel-opencl -Jxf intel-opencl-devel-r5.0-63503.x86_64.tar.xz
tar -C intel-opencl -Jxf intel-opencl-cpu-r5.0-63503.x86_64.tar.xz
sudo cp -R intel-opencl/* /
sudo ldconfig
cd ..
sudo rm -r intel-opencl-tmp
sudo cp -R /opt/intel/opencl/include/CL /usr/include/
sudo apt install -y ocl-icd-opencl-dev vim
echo "OpenCL Driver Installation Complete"
- name: Build Sibernetic
run: |
sudo apt install -y python3-dev freeglut3-dev libglu1-mesa-dev
#sudo apt install -y --allow-downgrades libc-bin=2.27-3ubuntu1.5 # Fails with 2.27-3ubuntu1.6 for some reason...
python -V
ls -alt /usr/bin/python*
ls -alt
make clean
make
- name: Print Sibernetic help
run: |
./Release/Sibernetic -h
- name: Print info on executable
run: |
ldd ./Release/Sibernetic
echo "NOTE: not running Sibernetic on GitHub actions test with Intel drivers. Seg faults."
###./Release/Sibernetic -no_g timelimit=0.001
- name: Final version info
run: |
python -V
pip list