document alt. ROM location #6
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: FEED Core | |
on: [push, pull_request, workflow_dispatch] | |
env: | |
SETUP_PATH: .ci-local | |
jobs: | |
native: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
env: | |
CMP: ${{ matrix.cmp }} | |
BCFG: ${{ matrix.configuration }} | |
BASE: ${{ matrix.base }} | |
CI_CROSS_TARGETS: ${{ matrix.cross }} | |
TEST: ${{ matrix.test }} | |
EXTRA: ${{ matrix.extra }} | |
VV: "1" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Native Linux (WError) | |
os: ubuntu-latest | |
cmp: gcc | |
configuration: default | |
base: "7.0" | |
extra: "CMD_CPPFLAGS=-Werror" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: "apt-get install" | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install gdb | |
if: runner.os == 'Linux' | |
- name: Automatic core dumper analysis | |
uses: mdavidsaver/ci-core-dumper@master | |
- name: Prepare and compile dependencies | |
run: python .ci/cue.py prepare | |
- name: Build main module | |
run: python .ci/cue.py build | |
- name: Run main module tests | |
run: python -m ci_core_dumper exec python .ci/cue.py -T 5M test | |
- name: Collect and show test results | |
if: ${{ always() }} | |
run: python .ci/cue.py test-results | |
- name: Upload tapfiles Artifact | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tapfiles ${{ matrix.name }} | |
path: '**/O.*/*.tap' |