Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Early Access wallpaper #178

Merged
merged 6 commits into from
Jan 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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