Version which sets some sort of breakpoints #164
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
name: Build and test Linux executable | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [amd64, armv7, aarch64, ppc64le] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare | |
run: chmod u+x .github/workflows/*.sh | |
- name: Build for matrix.arch == amd64 | |
if: ${{ matrix.arch == 'amd64' }} | |
run: | | |
sudo .github/workflows/generic-build.sh ${{ matrix.arch }} | |
sudo .github/workflows/ci-run-tests.sh ${{ matrix.arch }} | |
wget https://codecov.io/bash || true | |
bash bash -s /tmp/kcov-kcov || true | |
- name: Build for matrix.arch == i386 | |
if: ${{ matrix.arch == 'i386' }} | |
run: | | |
chmod u+x ./.github/workflows/setup-i386.sh | |
sudo .github/workflows/setup-i386.sh | |
sudo schroot -c mychroot -- ./.github/workflows/generic-build.sh ${{ matrix.arch }} | |
sudo .github/workflows/ci-run-tests.sh ${{ matrix.arch }} | |
- name: Build for matrix.arch == armv7, aarch64, ppc64le | |
if: ${{ matrix.arch == 'armv7' || matrix.arch == 'aarch64' || matrix.arch == 'ppc64le' }} | |
uses: uraimo/[email protected] | |
with: | |
architecture: ${{ matrix.arch }} | |
distribution: ubuntu18.04 | |
run: | | |
.github/workflows/generic-build.sh ${{ matrix.arch }} | |
build-osx: | |
name: Build and test OSX executable | |
runs-on: macOS-latest | |
env: | |
CC: clang | |
CXX: clang++ | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare | |
run: | | |
chmod u+x .github/workflows/osx-build.sh .github/workflows/ci-run-tests.sh | |
brew install zlib bash cmake pkgconfig [email protected] [email protected] | |
- name: Build for OSX | |
run: | | |
sudo .github/workflows/osx-build.sh | |
sudo .github/workflows/ci-run-tests.sh | |
build-freebsd: | |
runs-on: macos-12 | |
name: Build and test FreeBSD executable | |
steps: | |
- uses: actions/checkout@v2 | |
- name: FreeBSD | |
id: test | |
uses: vmactions/freebsd-vm@v0 | |
with: | |
usesh: true | |
sync: rsync | |
prepare: pkg install -y binutils cmake elfutils python bash git | |
run: | | |
chmod u+x .github/workflows/freebsd-build.sh .github/workflows/ci-run-tests.sh | |
.github/workflows/freebsd-build.sh x86_64 | |
.github/workflows/ci-run-tests.sh | |
build-and-push-docker-image: | |
needs: [build-linux, build-osx, build-freebsd] | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Docker Hub login | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
run: echo $DOCKER_PASSWORD | docker login --username $DOCKER_USERNAME --password-stdin | |
- name: Build docker image | |
run: docker build -t kcov/kcov:latest . | |
- name: Push to Docker Hub | |
run: docker push kcov/kcov:latest |