Skip to content

Commit

Permalink
Build Early Access wallpaper (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Jan 5, 2023
1 parent fc16e47 commit 268ec78
Show file tree
Hide file tree
Showing 4 changed files with 426 additions and 7 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,35 @@
name: CI

on: [push, pull_request]
on:
pull_request:
types:
- opened
- reopened
- synchronize

jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

container:
image: elementary/docker:unstable
image: elementary/docker:next-unstable

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
apt update
apt install -y exif meson
apt install -y exif librsvg2-bin meson
- name: Test Metadata
run: bash tests.sh

- name: Build
run: |
meson build
ninja -C build
ninja -C build install
- name: Build (Early Access)
run: |
meson configure build -Dearly_access=true
ninja -C build install

0 comments on commit 268ec78

Please sign in to comment.