summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar liushuyu2021-12-22 23:31:57 -0700
committerGravatar liushuyu2022-07-04 21:21:56 -0600
commita1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4 (patch)
treeb5822f53279efae6dc0353732eae08e8d251f3d0 /.github
parentMerge pull request #8521 from lat9nq/gdbstub-in-bounds (diff)
downloadyuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar.gz
yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.tar.xz
yuzu-a1815b617ceebf9a0a43c6fb89a13ac7f37f9ba4.zip
CI: Use GitHub Actions to check pull requests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/verify.yml52
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 @@
1name: 'yuzu verify'
2
3on:
4 pull_request:
5 branches: [ master ]
6
7jobs:
8 format:
9 name: 'verify formatting'
10 runs-on: ubuntu-latest
11 container:
12 image: yuzuemu/build-environments:linux-clang-format
13 options: -u 1001
14 steps:
15 - uses: actions/checkout@v2
16 with:
17 submodules: false
18 - name: 'Verify Formatting'
19 run: bash -ex ./.ci/scripts/format/script.sh
20 build:
21 name: 'test build'
22 needs: format
23 runs-on: ubuntu-latest
24 strategy:
25 fail-fast: false
26 matrix:
27 include:
28 - type: clang
29 image: linux-fresh
30 - type: linux
31 image: linux-fresh
32 - type: windows
33 image: linux-mingw
34 container:
35 image: yuzuemu/build-environments:${{ matrix.image }}
36 options: -u 1001
37 steps:
38 - uses: actions/checkout@v2
39 with:
40 submodules: recursive
41 fetch-depth: 0
42 - name: Set up cache
43 uses: actions/cache@v2
44 with:
45 path: ~/.ccache
46 key: ${{ runner.os }}-${{ matrix.image }}-${{ github.sha }}
47 restore-keys: |
48 ${{ runner.os }}-${{ matrix.image }}-
49 - name: Build
50 run: ./.ci/scripts/${{ matrix.type }}/docker.sh
51 env:
52 ENABLE_COMPATIBILITY_REPORTING: "ON"