ci: fix asan.yml #718
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
on: ["push", "pull_request"] | |
name: Test Coveralls | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
otp: | |
- 25.3.2 | |
rebar3: | |
- 3.20.0 | |
build_type: | |
- RelWithDebInfo | |
logging: | |
- false | |
arch: | |
- x86_64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- uses: erlef/setup-beam@2f0cc07b4b9bea248ae098aba9e1a8a1de5ec24c # v1.17.5 | |
with: | |
otp-version: ${{ matrix.otp }} | |
rebar3-version: ${{ matrix.rebar3 }} | |
- name: Run cover | |
run: | | |
sudo apt-get install lcov | |
make cover | |
- name: Coveralls C | |
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
flag-name: run-c-lcov | |
files: coverage/proper-lcov.info coverage/lcov.info | |
parallel: true | |
git-branch: ${{ github.ref_name }} | |
git-commit: ${{ github.sha }} | |
- name: Run cover with feature switches | |
run: | | |
sudo apt-get install lcov | |
export QUICER_USE_TRUSTED_STORE=1 | |
make cover | |
- name: Coveralls C | |
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
flag-name: run-c-lcov-feature | |
files: coverage/proper-lcov.info coverage/lcov.info | |
parallel: true | |
git-branch: ${{ github.ref_name }} | |
git-commit: ${{ github.sha }} | |
- name: Coveralls Erl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: rebar3 as test coveralls send | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |