aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build-ubuntu-aarch64.yml
blob: c5004aa2cf1020cb906c815979dd835d3d94323a (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: CMake Build (Ubuntu aarch64)

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

env:
  BUILD_TYPE: Release

jobs:
  build:
    runs-on: ubuntu-20.04
    container: ubuntu:20.04

    steps:
    - name: Prepare system
      shell: bash
      run: |
        apt update
        apt -y full-upgrade
        apt -y install git
    - name: Check out source
      uses: actions/checkout@v1
    - name: Install dependencies
      shell: bash
      run: |
        dpkg --add-architecture arm64
        sh -c "sed \"s|^deb \([a-z\.:/]*\) \([a-z\-]*\) \(.*\)$|deb [arch=amd64] \1 \2 \3\ndeb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports \2 \3|\" /etc/apt/sources.list > /etc/apt/sources.list.new"
        rm /etc/apt/sources.list
        mv /etc/apt/sources.list{.new,}
        apt update
        DEBIAN_FRONTEND=noninteractive apt install -y {gcc-10,g++-10,pkg-config}-aarch64-linux-gnu {libsdl2,qtbase5,qtmultimedia5,libslirp,libarchive,libepoxy}-dev:arm64 cmake dpkg-dev
    - name: Configure
      shell: bash
      run: |
        CC=aarch64-linux-gnu-gcc-10 CXX=aarch64-linux-gnu-g++-10 cmake -DPKG_CONFIG_EXECUTABLE=/usr/bin/aarch64-linux-gnu-pkg-config $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -B build
    - name: Make
      shell: bash
      run: |
        cmake --build build -j$(nproc --all)
        mkdir dist
        cp build/melonDS dist
    - uses: actions/upload-artifact@v1
      with:
        name: melonDS-ubuntu-aarch64
        path: dist