aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci_build.yml
blob: 8da122b58cfadd8acff239ca3cb6b1808f3f3ded (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Build river and run the test suite every time a commit is pushed to master or
# a pull request is opened against master.
#
# TODO: figure out why this didn't work on alpine

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

name: Archliunx CI

jobs:
  build:
    name: Archliunx CI
    runs-on: ubuntu-latest
    #container: alpine:edge
    container: archlinux:latest

    steps:
      - name: Install Dependencies
        run: |
          #apk add --no-cache wlroots-dev
          #apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing zig
          pacman -Syu --noconfirm zig wayland-protocols wlroots pkgconf

      - name: Checkout Code
        uses: actions/checkout@master

      - name: Build
        run: |
          zig build

      - name: Test
        run: |
          zig build test