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.
1 parent 777bf56 commit dbfcd79Copy full SHA for dbfcd79
.github/workflows/rpi_arm64.yml
@@ -0,0 +1,34 @@
1
+name: RaspberryPI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: pguyot/arm-runner-action@v2
18
19
+ - name: Install UnixODBC package
20
+ run: sudo apt-get install -y unixodbc unixodbc-dev
21
22
+ - name: Go to build folder & make
23
+ working-directory: ${{env.GITHUB_WORKSPACE}}
24
+ run: |
25
+ cd Builds/Gcc.lin
26
+ cp makefile.linux makefile
27
+ make
28
29
+ - uses: actions/upload-artifact@v4
30
+ with:
31
+ name: linux_libs
32
+ path: |
33
+ ./Builds/Gcc.lin/Release_*
34
+ !./Builds/Gcc.lin/Release_*/obj
0 commit comments