Commit 185ca61 1 parent d2e636b commit 185ca61 Copy full SHA for 185ca61
File tree 2 files changed +41
-1
lines changed
2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - develop
5
+ - feature/*
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ build :
10
+ name : build
11
+ runs-on : arm-none-eabi-gcc
12
+ steps :
13
+
14
+ - name : Setup arm-none-eabi-gcc path
15
+ run : echo "/opt/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi/bin" >> $GITHUB_PATH
16
+
17
+ - name : Checkout
18
+ uses : actions/checkout@v4
19
+
20
+ - run : |
21
+ git fetch --prune --unshallow --no-recurse-submodules
22
+ git branch develop
23
+ git branch -u origin/develop develop
24
+ git branch master
25
+ git branch -u origin/master master
26
+
27
+ - name : Install python venv & dependencies
28
+ run : |
29
+ python -m venv venv
30
+ source venv/bin/activate
31
+ pip install -r requirements.txt
32
+ echo PATH=$PATH >> $GITHUB_ENV
33
+ echo VIRTUAL_ENV=$VIRTUAL_ENV >> $GITHUB_ENV
34
+
35
+ - name : Select the port
36
+ run : defconfig config/nwdaq_br28_fdc_defconfig
37
+
38
+ - name : Compile
39
+ run : scons firmware
Original file line number Diff line number Diff line change 1
1
gitdb == 4.0.5
2
2
GitPython == 3.1.14
3
3
pyaml == 20.4.0
4
- PyYAML == 5.4 .1
4
+ PyYAML == 6.0 .1
5
5
six == 1.15.0
6
6
smmap == 3.0.5
7
7
kconfiglib == 14.1.0
8
8
protobuf == 3.15.3
9
9
SCons == 4.1.0.post1
10
+ tqdm == 4.57.0
You can’t perform that action at this time.
0 commit comments