File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 50
50
matrix :
51
51
wheel :
52
52
- ns-3
53
+ - traci
53
54
fail-fast : false
54
55
55
56
steps :
Original file line number Diff line number Diff line change
1
+ section ---------------- install ----------------
2
+ run apt-get update
3
+ run apt-get install -y --no-install-recommends \
4
+ git \
5
+ ca-certificates \
6
+ python3-setuptools \
7
+ python3-wheel \
8
+ && true
9
+
10
+ section ---------------- build ----------------
11
+ workdir /opt/sumo
12
+ run git clone -b " v1_5_0" --depth 1 https://github.com/eclipse/sumo .
13
+
14
+ universal_wheels=' traci sumolib'
15
+
16
+ for wheel in $universal_wheels ; do
17
+ workdir " /opt/$wheel "
18
+ run python3 " ../sumo/tools/build/setup-$wheel .py" bdist_wheel --universal
19
+ done
20
+
21
+ section ---------------- assets ----------------
22
+ for wheel in $universal_wheels ; do
23
+ asset " /opt/$wheel /dist" /*
24
+ done
You can’t perform that action at this time.
0 commit comments