lone/elf: define maximum size data types #373
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lone | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build-and-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: | |
- name: cc | |
env: | |
CC: cc | |
- name: gcc | |
env: | |
CC: gcc | |
- name: clang | |
env: | |
CC: clang | |
linker: | |
- name: ld | |
env: | |
LD: ld | |
- name: lld | |
env: | |
LD: lld | |
- name: mold | |
env: | |
LD: mold | |
- name: mold+spare-segments | |
env: | |
LD: mold | |
LDFLAGS: -Wl,--spare-program-headers,2 | |
runs-on: ubuntu-latest | |
container: archlinux:base-devel | |
name: ${{ matrix.compiler.name }} ${{ matrix.linker.name }} | |
steps: | |
- name: Set up pacman keys | |
run: pacman-key --init | |
- name: Update and install packages | |
run: pacman -Syu --noconfirm clang lld llvm mold | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: make --jobs --output-sync | |
env: | |
CC: ${{ matrix.compiler.env.CC }} | |
LD: ${{ matrix.linker.env.LD }} | |
CFLAGS: ${{ matrix.compiler.env.CFLAGS }} | |
LDFLAGS: ${{ matrix.linker.env.LDFLAGS }} | |
- name: Test | |
run: make test |