Skip to content

Commit 3333c31

Browse files
committed
Fix conflict with #9990
1 parent f5819ed commit 3333c31

File tree

3 files changed

+1
-15
lines changed

3 files changed

+1
-15
lines changed

.github/workflows/quick-jobs.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,13 @@ jobs:
1818
meta:
1919
name: Meta checks
2020
runs-on: ubuntu-latest
21-
<<<<<<< HEAD
22-
=======
2321
env:
2422
cabal_build: >-
2523
cabal build --builddir=dist-newstyle-meta --project-file=cabal.meta.project
2624
gen-cabal-macros
2725
gen-paths-module
2826
gen-spdx
2927
gen-spdx-exc
30-
>>>>>>> d8147f62c (Rename projects to cabal.*.project)
3128
# This job is not run in a container, any recent GHC should be fine
3229
steps:
3330
- name: Set PATH
@@ -153,9 +150,4 @@ jobs:
153150
- name: Check Release with Pinned Hackage
154151
run: cabal build all --dry-run --project-file=cabal.release.project
155152
- name: Check Release with Latest Hackage
156-
<<<<<<< HEAD
157-
run: cabal build all --dry-run --project-file=cabal.project.release --index-state="hackage.haskell.org HEAD"
158-
159-
=======
160153
run: cabal build all --dry-run --project-file=cabal.release.project --index-state="hackage.haskell.org HEAD"
161-
>>>>>>> d8147f62c (Rename projects to cabal.*.project)

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,9 @@ doc/buildinfo-fields-reference.rst : \
7575
cabal run buildinfo-reference-generator buildinfo-reference-generator/template.zinza | tee $@
7676
git diff --exit-code $@
7777

78-
<<<<<<< HEAD
7978
# analyse-imports
8079
analyse-imports : phony
81-
find Cabal-syntax/src Cabal/src cabal-install/src -type f -name '*.hs' | xargs cabal run --builddir=dist-newstyle-meta --project-file=cabal.project.meta analyse-imports --
82-
=======
83-
.PHONY: analyse-imports
84-
analyse-imports :
8580
find Cabal-syntax/src Cabal/src cabal-install/src -type f -name '*.hs' | xargs cabal run --builddir=dist-newstyle-meta --project-file=cabal.meta.project analyse-imports --
86-
>>>>>>> d8147f62c (Rename projects to cabal.*.project)
8781

8882
# ghcid
8983

bootstrap/generate_bootstrap_plans

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ run() {
1010
local drv="ghc-$ver"
1111
echo "$ver"
1212
nix build -f "$ghcs_nix" $drv
13-
(cd ../; rm -r dist-bootstrap; cabal --distdir=dist-bootstrap build --project-file=cabal.release.project --dry-run cabal-install:exe:cabal -w bootstrap/result/bin/ghc)
13+
(cd ../; rm -r dist-bootstrap; cabal --distdir=dist-bootstrap build --project-file=cabal.bootstrap.project --dry-run cabal-install:exe:cabal -w bootstrap/result/bin/ghc)
1414
jq --sort-keys < ../dist-bootstrap/cache/plan.json > "plan-$ver.json"
1515
cabal run --with-ghc-pkg $PWD/boot_ghc/bin/ghc-pkg -w $PWD/boot_ghc/bin/ghc -v0 cabal-bootstrap-gen -- "plan-$ver.json" | jq --sort-keys | tee "linux-$(echo $ver | tr "_" ".").json"
1616
}

0 commit comments

Comments
 (0)