Skip to content

Commit dbfcd79

Browse files
authored
Create rpi_arm64.yml
CI action for PaspberryPI builds
1 parent 777bf56 commit dbfcd79

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/rpi_arm64.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)