-
Notifications
You must be signed in to change notification settings - Fork 17
60 lines (56 loc) · 1.69 KB
/
ci-pr.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
name: Check Collection
on:
push:
branches:
- '**'
tags:
- '**'
pull_request:
branches:
- main
defaults:
run:
shell: bash
jobs:
build:
name: Check package collection
runs-on: ubuntu-latest
env:
PACK_DIR: /root/.pack
GOFLAGS: "-buildvcs=false"
strategy:
fail-fast: false
container: ghcr.io/stefan-hoeck/idris2-pack:latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Make output
run: mkdir -p "$HOME/output"
- name: Install dependencies
run: |
apt-get update
apt-get install --yes libgsl-dev
apt-get install --yes libpq-dev
# ncurses-idris:
apt-get install --yes libncurses-dev libc6-dev
# idrisGL:
apt-get install --yes libsdl1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl2-image-dev libsdl2-ttf-dev libsdl2-gfx-dev libsdl2-mixer-dev
# idris2-go:
apt-get install --yes golang-go
- name: Use latest pack commit
run: pack update
- name: Install pack-admin
run: pack --no-prompt install-app pack-admin
- name: Copy HEAD
run: cp collections/HEAD.toml "$PACK_DIR/db/HEAD.toml"
- name: Extract Collection from HEAD
run: pack-admin --no-prompt extract-from-head "$PACK_DIR/db/testdb.toml"
- name: Switch to testdb
run: pack --no-prompt switch "testdb"
- name: Re-Install pack-admin
run: pack --no-prompt install-app pack-admin
- name: Check Collection
run: pack-admin --no-prompt check-collection "$HOME/output/"
- name: Fail if missing
run: test -f "$HOME/output/testdb.toml"