aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/continuous-integration-workflow.yml
blob: c25a721b71b2133f06676b6b2c41effc7e9b7cf9 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
name: CI

on:
  push:
  pull_request:

jobs:
  crosstool:
    runs-on: ${{ matrix.host }}
    strategy:
      matrix:
        host: ["ubuntu-22.04", "macos-12"]
    steps:
      - name: "clone"
        uses: actions/checkout@v4
      - name: "prereq Linux"
        if: ${{ runner.os == 'Linux' }}
        run: |
          sudo apt-get update && sudo apt-get install -y bison flex gperf help2man libtool-bin meson ninja-build texinfo
      - name: "prereq macOS"
        if: ${{ runner.os == 'macOS' }}
        run: |
          brew install autoconf automake bash binutils gawk gnu-sed \
               gnu-tar help2man make ncurses texinfo libtool
      - name: "build ct-ng"
        run: |
          if [ "$RUNNER_OS" == "macOS" ]; then
            PATH="$PATH:$(brew --prefix)/opt/binutils/bin"
            export PATH
            CPPFLAGS="-I$(brew --prefix)/opt/ncurses/include -I$(brew --prefix)/opt/gettext/include"
            export CPPFLAGS
            LDFLAGS="-L$(brew --prefix)/opt/ncurses/lib -L$(brew --prefix)/opt/gettext/lib"
            export LDFLAGS
          fi
          ./bootstrap
          ./configure --prefix="$PWD/.local/"
          make
          make install
          tar -cf ct-ng.tar .local/
      - name: "upload ct-ng"
        uses: actions/upload-artifact@v4
        with:
          name: crosstool.${{ matrix.host }}
          path: ct-ng.tar
      - name: "upload config.log"
        uses: actions/upload-artifact@v4
        with:
          name: config.log.${{ matrix.host }}
          path: config.log
        if: ${{ always() }}

  tarballs:
    needs: crosstool
    runs-on: ${{ matrix.host }}
    strategy:
      matrix:
        host: ["ubuntu-22.04"]
    steps:
      - name: "download ct-ng"
        uses: actions/download-artifact@v4
        with:
          name: crosstool.${{ matrix.host }}
      - name: "extract ct-ng"
        run: |
          tar -xf ct-ng.tar
      - name: cache tarballs
        id: cache
        uses: actions/cache@v4
        with:
          path: src.tar
          key: src.tar-${{ hashFiles('.local/share/crosstool-ng/packages') }}-${{ hashFiles('.local/share/crosstool-ng/samples') }}
          restore-keys: |
            src.tar-${{ hashFiles('.local/share/crosstool-ng/packages') }}-
            src.tar-
      - name: extract tarballs
        run: |
          tar -xvf src.tar || true
          touch stamp
      - name: "prereq Linux"
        if: ${{ runner.os == 'Linux' }}
        run: |
          sudo apt-get update && sudo apt-get install -y bison flex gperf help2man libtool-bin texinfo
          echo "$GITHUB_WORKSPACE/.local/bin" >> "$GITHUB_PATH"
      - name: "ct-ng source"
        run: |
          mkdir -p src
          for sample in aarch64-unknown-linux-gnu arm-picolibc-eabi \
                arm-unknown-linux-musleabi armv6-nommu-linux-uclibcgnueabi \
                x86_64-w64-mingw32; do \
                ct-ng $sample; \
                sed -i -e '/CT_LOG_PROGRESS_BAR/s/y$/n/' .config; \
                sed -i -e '/CT_LOCAL_TARBALLS_DIR/s/HOME/CT_TOP_DIR/' .config; \
                sed -i -e '/CT_PREFIX_DIR/s/HOME/CT_TOP_DIR/' .config; \
                sed -i -e 's/^.*CT_COMP_TOOLS_BISON.*$/CT_COMP_TOOLS_BISON=y/' .config; \
                sed -i -e 's/^.*CT_COMP_TOOLS_M4.*$/CT_COMP_TOOLS_M4=y/' .config; \
                sed -i -e 's/^.*CT_COMP_TOOLS_MAKE.*$/CT_COMP_TOOLS_MAKE=y/' .config; \
                ct-ng olddefconfig; \
                ct-ng source; \
          done
          find src -type f -not -newer stamp -delete -print
          tar -cvf src.tar src

  toolchains:
    needs: [crosstool, tarballs]
    uses: ./.github/workflows/build-toolchains.yml
    with:
      samples: >-
        [
          "aarch64-unknown-linux-gnu",
          "aarch64-unknown-linux-musl",
          "arc-multilib-elf32",
          "arc-multilib-linux-gnu",
          "arc-multilib-linux-uclibc",
          "arm-picolibc-default",
          "arm-unknown-linux-gnueabi",
          "arm-unknown-linux-musleabi",
          "armv6-nommu-linux-uclibcgnueabi",
          "avr",
          "hppa-unknown-linux-gnu",
          "i686-w64-mingw32",
          "loongarch64-unknown-linux-gnu",
          "loongarch64-unknown-linux-musl",
          "mips-unknown-elf",
          "mips-unknown-linux-gnu",
          "mips64-unknown-linux-gnu",
          "powerpc-unknown-linux-gnu",
          "powerpc64-unknown-linux-gnu",
          "powerpc64-unknown-linux-musl",
          "riscv32-unknown-elf",
          "riscv64-unknown-elf",
          "s390-unknown-linux-gnu",
          "sh-unknown-elf",
          "sparc-unknown-linux-gnu",
          "x86_64-multilib-linux-uclibc",
          "x86_64-unknown-linux-gnu",
          "x86_64-w64-mingw32",
          "xtensa-fsf-linux-uclibc"
        ]

#  canadian-cross:
#    needs: [toolchains]
#    uses: ./.github/workflows/build-toolchains.yml
#    with:
#      samples: >-
#        ["x86_64-w64-mingw32,x86_64-pc-linux-gnu"]
#      canadian-cross: true