summaryrefslogtreecommitdiff
path: root/.gitea
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-06-01 10:28:29 +0200
committerEugen Wissner <belka@caraus.de>2026-06-01 10:28:29 +0200
commita090a5d00ceae40369451a58f9a0384bb94e8ff6 (patch)
treef16d26d19d968e27291132c1981a477cd9c79605 /.gitea
parenta2a04b394b35b311655159fd8a2d9c31db93e579 (diff)
downloadgraphql-a090a5d00ceae40369451a58f9a0384bb94e8ff6.tar.gz
Remove actions
Diffstat (limited to '.gitea')
-rw-r--r--.gitea/deploy.awk3
-rw-r--r--.gitea/workflows/build.yml33
-rw-r--r--.gitea/workflows/release.yml17
3 files changed, 0 insertions, 53 deletions
diff --git a/.gitea/deploy.awk b/.gitea/deploy.awk
deleted file mode 100644
index ed542f0..0000000
--- a/.gitea/deploy.awk
+++ /dev/null
@@ -1,3 +0,0 @@
-END {
- system("cabal upload --username belka --password "ENVIRON["HACKAGE_PASSWORD"]" "$0)
-}
diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml
deleted file mode 100644
index c243442..0000000
--- a/.gitea/workflows/build.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Build
-
-on:
- push:
- branches:
- - '**'
- pull_request:
- branches: [master]
-
-jobs:
- audit:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - run: hlint -- src tests
-
- test:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - name: Install dependencies
- run: cabal update
- - name: Prepare system
- run: cabal build graphql-test --enable-tests
- - run: cabal test --test-show-details=streaming --enable-tests
-
- doc:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - name: Install dependencies
- run: cabal update
- - run: cabal haddock --enable-documentation
diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml
deleted file mode 100644
index 6ada4c3..0000000
--- a/.gitea/workflows/release.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-name: Release
-
-on:
- push:
- tags:
- - '**'
-
-jobs:
- release:
- container: buildenv:6
- steps:
- - uses: actions/checkout@v6
- - name: Upload a candidate
- env:
- HACKAGE_PASSWORD: ${{ secrets.HACKAGE_PASSWORD }}
- run: |
- cabal sdist | awk -f .gitea/deploy.awk