CI changes: merged some flows into one with multiple jobs
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
This commit is contained in:
parent
a16af482de
commit
676314c2f6
3 changed files with 59 additions and 58 deletions
|
@ -1,31 +0,0 @@
|
||||||
name: build bin
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Make sure build does not fail
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
||||||
name: checkout
|
|
||||||
- name: install alsa devel
|
|
||||||
run: apt update && apt install libasound2-dev -y
|
|
||||||
- uses: https://code.forgejo.org/actions/setup-go@v5
|
|
||||||
name: install go
|
|
||||||
with:
|
|
||||||
go-version-file: './go.mod'
|
|
||||||
- run: go version
|
|
||||||
name: Go version
|
|
||||||
- run: make dep
|
|
||||||
name: install dependencies
|
|
||||||
- run: make build
|
|
||||||
name: build app
|
|
||||||
|
|
59
.forgejo/workflows/ci.yml
Normal file
59
.forgejo/workflows/ci.yml
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
name: ci/ci
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
codespell:
|
||||||
|
name: Check for spelling errors
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Annotate locations with typos
|
||||||
|
uses: "https://github.com/codespell-project/codespell-problem-matcher@v1"
|
||||||
|
- name: Codespell
|
||||||
|
uses: "https://github.com/codespell-project/actions-codespell@v2"
|
||||||
|
with:
|
||||||
|
check_filenames: true
|
||||||
|
check_hidden: true
|
||||||
|
skip: ./.git
|
||||||
|
|
||||||
|
compile:
|
||||||
|
name: Make sure build does not fail
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
name: checkout
|
||||||
|
- name: install alsa devel
|
||||||
|
run: apt update && apt install libasound2-dev -y
|
||||||
|
- uses: https://code.forgejo.org/actions/setup-go@v5
|
||||||
|
name: install go
|
||||||
|
with:
|
||||||
|
go-version-file: './go.mod'
|
||||||
|
- run: go version
|
||||||
|
name: Go version
|
||||||
|
- run: make dep
|
||||||
|
name: install dependencies
|
||||||
|
- run: make build
|
||||||
|
name: build app
|
||||||
|
|
||||||
|
notify-fail:
|
||||||
|
name: notify-fail
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ always() && contains(needs.*.result, 'failure') }}
|
||||||
|
steps:
|
||||||
|
- name: gotify
|
||||||
|
run: curl "${{ secrets.GOTIFY_SERVER_URL }}?token=${{ secrets.GOTIFY_TOKEN }}" \
|
||||||
|
-F "title='CI failed'" \
|
||||||
|
-F "message='Something failed @ ${{ env.GITHUB_REPOSITORY }}'" \
|
||||||
|
-F "priority=7" &> /dev/null
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
name: Codespell
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
codespell:
|
|
||||||
name: Check for spelling errors
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Annotate locations with typos
|
|
||||||
uses: "https://github.com/codespell-project/codespell-problem-matcher@v1"
|
|
||||||
- name: Codespell
|
|
||||||
uses: "https://github.com/codespell-project/actions-codespell@v2"
|
|
||||||
with:
|
|
||||||
check_filenames: true
|
|
||||||
check_hidden: true
|
|
||||||
skip: ./.git
|
|
Loading…
Reference in a new issue