diff options
author | liushuyu <liushuyu011@gmail.com> | 2021-12-23 07:31:57 +0100 |
---|---|---|
committer | liushuyu <liushuyu011@gmail.com> | 2022-07-05 05:21:56 +0200 |
commit | a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4 (patch) | |
tree | b5822f53279efae6dc0353732eae08e8d251f3d0 /.github/workflows/verify.yml | |
parent | Merge pull request #8521 from lat9nq/gdbstub-in-bounds (diff) | |
download | yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar.gz yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar.bz2 yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar.lz yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar.xz yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar.zst yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/verify.yml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml new file mode 100644 index 000000000..e601ecd40 --- /dev/null +++ b/.github/workflows/verify.yml @@ -0,0 +1,52 @@ +name: 'yuzu verify' + +on: + pull_request: + branches: [ master ] + +jobs: + format: + name: 'verify formatting' + runs-on: ubuntu-latest + container: + image: yuzuemu/build-environments:linux-clang-format + options: -u 1001 + steps: + - uses: actions/checkout@v2 + with: + submodules: false + - name: 'Verify Formatting' + run: bash -ex ./.ci/scripts/format/script.sh + build: + name: 'test build' + needs: format + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - type: clang + image: linux-fresh + - type: linux + image: linux-fresh + - type: windows + image: linux-mingw + container: + image: yuzuemu/build-environments:${{ matrix.image }} + options: -u 1001 + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + fetch-depth: 0 + - name: Set up cache + uses: actions/cache@v2 + with: + path: ~/.ccache + key: ${{ runner.os }}-${{ matrix.image }}-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-${{ matrix.image }}- + - name: Build + run: ./.ci/scripts/${{ matrix.type }}/docker.sh + env: + ENABLE_COMPATIBILITY_REPORTING: "ON" |