summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 284cd2a9064b4d912857e25acd616443bbba0c59 (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
51
52
53
54
55
56
57
58
59
60
name: Build
on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main
    types: [opened, synchronize, reopened]
  release:
    types: [created]
  schedule:
    - cron: "0 13 * * 1"

jobs:
  test:
    name: ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: true
      matrix:
        os: ["ubuntu-latest", "ubuntu-18.04"]
        include:
          - compiler: "default-cc"
            os: "ubuntu-latest"
          - compiler: "gcc-7"
            os: "ubuntu-latest"

    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0  # Shallow clones should be disabled for a better relevancy of analysis
      - name: Install Ubuntu Prerequisites
        if: startsWith(matrix.os, 'ubuntu')
        run: |
          sudo apt-get update
          sudo apt-get install autoconf automake cmake libtool pkg-config gettext flex bison
          sudo apt-get install ${{ matrix.compiler }} lcov
      - name: Build
        run: |
          ./mingw-w64-build --jobs 8 --keep-artifacts --tarball ./mingw-w64-toolchain.tbz2 i686 x86_64
      - name: SHA512
        run: |
          sha512sum -b ./mingw-w64-toolchain.tbz2 >./mingw-w64-toolchain.tbz2.sha512
      - name: Activate
        run: |
          mkdir tmp
          cd tmp
          tar -xjf ../mingw-w64-toolchain.tbz2
          cd ..
          source ./tmp/mingw-w64-sysroot/activate.sh
          x86_64-w64-mingw32-gcc -v
          x86_64-w64-mingw32-g++ -v
      - uses: actions/upload-artifact@v2
        with:
          name: mingw-w64-toolchain
          path: |
            ./mingw-w64-toolchain.tbz2
            ./mingw-w64-toolchain.tbz2.sha512
          retention-days: 7