-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a basic build and test job (#49927)
* Add a basic build and test job The intention is that this will be a required build and test job that must always pass.
- Loading branch information
1 parent
3a2dc8d
commit 5fec688
Showing
2 changed files
with
71 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Basic Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
skip-duplicates: | ||
continue-on-error: false | ||
runs-on: ubuntu-latest | ||
# Map a step output to a job output | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
paths-ignore: '["android/**", "build-data/osx/**", "doc/**", "doxygen_doc/**", "lgtm/**", "msvc-**", "object_creator/**", "tools/**", "utilities/**"]' | ||
basic-build: | ||
needs: skip-duplicates | ||
if: ${{ needs.skip-duplicates.outputs.should_skip != 'true' }} | ||
|
||
name: Basic Build and Test (GCC 9, Curses, LTO) | ||
runs-on: ubuntu-latest | ||
env: | ||
COMPILER: g++-9 | ||
TEST_STAGE: 1 | ||
EXTRA_TEST_OPTS: --error-format=github-action | ||
NATIVE: linux64 | ||
GOLD: 1 | ||
LTO: 1 | ||
RELEASE: 1 | ||
steps: | ||
- name: checkout repository | ||
uses: actions/checkout@v1 | ||
with: | ||
fetch-depth: 1 | ||
- name: install dependencies (ubuntu) | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libncursesw5-dev ccache gettext parallel | ||
- name: prepare | ||
run: bash ./build-scripts/requirements.sh | ||
- name: Get Date | ||
id: get-date | ||
run: | | ||
echo "::set-output name=date::$(/bin/date -u "+%Y%m%d%H%M")" | ||
shell: bash | ||
- name: ccache cache files (ubuntu) | ||
if: runner.os == 'Linux' | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.ccache | ||
key: ccache-linux-g++-9-${{ steps.get-date.outputs.date }} | ||
restore-keys: | | ||
ccache-linux-g++-9- | ||
- uses: ammaraskar/gcc-problem-matcher@master | ||
- name: build and test | ||
run: bash ./build-scripts/build.sh | ||
- name: upload artifacts if failed | ||
uses: actions/upload-artifact@v2 | ||
if: failure() | ||
with: | ||
name: cata_test | ||
path: tests/cata_test | ||
if-no-files-found: ignore |
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