2021-12-11 00:30:21 +00:00
|
|
|
name: Build Pull Request
|
|
|
|
on: [pull_request]
|
2021-12-12 17:27:55 +00:00
|
|
|
concurrency:
|
2021-12-11 00:30:21 +00:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_linux:
|
|
|
|
name: Build and Test (Linux)
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-12 17:27:55 +00:00
|
|
|
|
2021-12-11 00:30:21 +00:00
|
|
|
steps:
|
|
|
|
- shell: bash
|
|
|
|
run: git config --global core.autocrlf input
|
2021-12-12 17:27:55 +00:00
|
|
|
|
2021-12-11 00:30:21 +00:00
|
|
|
- name: Checkout Source
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2021-12-12 18:42:25 +00:00
|
|
|
sudo apt-get install linuxdoc-tools-info gcc-mingw-w64-x86-64
|
2021-12-12 17:27:55 +00:00
|
|
|
|
|
|
|
- name: Build the tools.
|
|
|
|
shell: bash
|
|
|
|
run: make -j2 bin USER_CFLAGS=-Werror
|
|
|
|
- name: Build the platform libraries.
|
|
|
|
shell: bash
|
|
|
|
run: make -j2 lib QUIET=1
|
|
|
|
- name: Run the regression tests.
|
2021-12-11 00:30:21 +00:00
|
|
|
shell: bash
|
2021-12-12 17:27:55 +00:00
|
|
|
run: make test QUIET=1
|
|
|
|
- name: Test that the samples can be built.
|
|
|
|
shell: bash
|
|
|
|
run: make -j2 samples
|
|
|
|
- name: Build the document files.
|
|
|
|
shell: bash
|
|
|
|
run: make -j2 doc
|
2021-12-12 18:42:25 +00:00
|
|
|
- name: Build 64-bit Windows versions of the tools.
|
2021-12-11 00:30:21 +00:00
|
|
|
run: |
|
|
|
|
make -C src clean
|
2021-12-12 18:42:25 +00:00
|
|
|
make -j2 bin USER_CFLAGS=-Werror CROSS_COMPILE=x86_64-w64-mingw32-
|
2021-12-11 00:30:21 +00:00
|
|
|
|
|
|
|
build_windows:
|
|
|
|
name: Build (Windows)
|
|
|
|
runs-on: windows-latest
|
2021-12-12 17:27:55 +00:00
|
|
|
|
2021-12-11 00:30:21 +00:00
|
|
|
steps:
|
|
|
|
- shell: bash
|
|
|
|
run: git config --global core.autocrlf input
|
2021-12-12 17:27:55 +00:00
|
|
|
|
2021-12-11 00:30:21 +00:00
|
|
|
- name: Checkout Source
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Add msbuild to PATH
|
|
|
|
uses: microsoft/setup-msbuild@v1.1
|
|
|
|
|
|
|
|
- name: Build app (debug)
|
|
|
|
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug
|
2021-12-12 17:27:55 +00:00
|
|
|
|
2021-12-11 00:30:21 +00:00
|
|
|
- name: Build app (release)
|
|
|
|
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release
|