Skip to content

Commit b03eb3f

Browse files
committed
first cut at API checking
The API files are empty in this commit, and will hopefully be filled in in later (to be squashed or amended) commits.
1 parent 23e65cf commit b03eb3f

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

.github/workflows/check-api.yml

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Check API
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- "doc/**"
7+
- "**/README.md"
8+
- "CONTRIBUTING.md"
9+
branches:
10+
- master
11+
pull_request:
12+
paths-ignore:
13+
- "doc/**"
14+
- "**/README.md"
15+
- "CONTRIBUTING.md"
16+
release:
17+
types:
18+
- created
19+
workflow_call:
20+
21+
jobs:
22+
check-api:
23+
name: Check API using ${{ matrix.sys.os }} ghc-${{ matrix.ghc }}
24+
runs-on: ${{ matrix.sys.os }}
25+
strategy:
26+
matrix:
27+
# we check API only on one platform and ghc release, since it shouldn't
28+
# vary elsewhere and the API tracer is sensitive to both
29+
sys:
30+
- { os: ubuntu-latest }
31+
ghc:
32+
[
33+
# print-api only supports a small subset of ghc versions
34+
"9.6.6",
35+
]
36+
37+
steps:
38+
39+
- uses: actions/checkout@v4
40+
41+
- uses: haskell-actions/setup@v2
42+
id: setup-haskell
43+
with:
44+
ghc-version: ${{ matrix.ghc }}
45+
cabal-version: 3.12.1.0 # see https://github.com/haskell/cabal/pull/10251
46+
ghcup-release-channel: https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.8.yaml
47+
48+
# I was going to use the canned action, but it only supports a single package and reinstalls the same binary each time
49+
- name: Install print-api
50+
shell: bash
51+
run: |
52+
wget -q https://github.com/Kleidukos/print-api/releases/download/v0.1.0.1/print-api-0.1.0.1-Linux-static-${{ matrix.ghc }}-x86_64.tar.gz
53+
tar -xzvf print-api-0.1.0.1-Linux-static-${{ matrix.ghc }}-x86_64.tar.gz
54+
chmod +x print-api
55+
56+
# print-api needs environment files. It also doesn't make a lot of sense to use the cached builds, sadly,
57+
# since they're special in different ways (bootstrap and validate) and we want a vanulla build. And there
58+
# isn't enough cache space to make a third cache, even though this is a very limited build.
59+
- name: Build Cabal with environment files
60+
shell: bash
61+
run: cabal build Cabal-syntax Cabal --write-environment-files=always --project-file=cabal.release.project
62+
63+
- name: Check Cabal-syntax and Cabal APIs
64+
run: |
65+
./print-api --package-name Cabal-syntax > Cabal-syntax.api
66+
./print-api --package-name Cabal > Cabal.api
67+
diff Cabal-syntax.api Cabal-syntax/Cabal-syntax-${{ matrix.ghc }}-${{ matrix.sys.os }}.api
68+
diff Cabal.api Cabal/Cabal-${{ matrix.ghc }}-${{ matrix.sys.os }}.api

Cabal-syntax/Cabal-syntax-ghc-9.6.6-ubuntu-latest.api

Whitespace-only changes.

Cabal/Cabal-ghc-9.6.6-ubuntu-latest.api

Whitespace-only changes.

0 commit comments

Comments
 (0)