File: android-build.yml

package info (click to toggle)
rr 5.9.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,060 kB
  • sloc: ansic: 66,406; cpp: 57,678; python: 4,627; asm: 1,331; sh: 576; xml: 411; makefile: 30
file content (31 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (2)
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
name: Android Build

on: [push, pull_request]

jobs:
  android-build:
    name: Android Build
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Build Dockerfile
        shell: bash
        run: docker build -t rr-android .android

      - name: Create dist dir
        shell: bash
        run: mkdir -p obj/dist

      - name: Build RR
        shell: bash
        run: |
          docker run --rm \
            -v $(pwd):/src/rr \
            -v $(pwd)/obj/dist:/dist \
            rr-android

      - uses: actions/upload-artifact@v4
        with:
          name: rr
          path: obj/dist/rr-*-Android-x86_64.tar.gz