Skip to content

Commit

Permalink
Switch to reusable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
oblivioncth committed Sep 1, 2024
1 parent f287efe commit 8a57910
Show file tree
Hide file tree
Showing 11 changed files with 131 additions and 347 deletions.
104 changes: 0 additions & 104 deletions .github/workflows/build-clifp-linux.yml

This file was deleted.

72 changes: 0 additions & 72 deletions .github/workflows/build-clifp-windows.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Project
on:
workflow_dispatch:
push:
branches-ignore:
- 'master'
workflow_run:
workflows: Tag and Sync
types: completed
branches: dev
# This is the branch that the original workflow ran on, which is technically dev, due to how
# the "pull_request" trigger works (it works off master correctly for a merged PR but is triggered
# by dev

jobs:
trigger-build:
name: Build Project
if: github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success'
uses: oblivioncth/actions/.github/workflows/build-cxx-project.yml@v1
secrets:
ffynnon_access: ${{ secrets.OBYBOT_FFYNNON_ACCESS }}
10 changes: 10 additions & 0 deletions .github/workflows/check-release-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Check Release PR
on:
pull_request:
types: [opened, synchronize, reopened]
branches: master

jobs:
check-pr-correctness:
name: Release PR Correctness Check
uses: oblivioncth/actions/.github/workflows/validate-release-pr.yml@v1
74 changes: 74 additions & 0 deletions .github/workflows/generate-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Generate Release
on:
workflow_run:
workflows: Build Project
types: completed
branches: master

jobs:
create-release-suffix:
name: Create Release Name Suffix
if: github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
outputs:
suffix: ${{ steps.form_suffix.outputs.suffix }}
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Get target FP version
id: check_target_fp
env:
match_start: set\(TARGET_FP_VERSION_PREFIX
match_end: \)
shell: pwsh
run: |
$project_lists = Get-Content -Raw CMakeLists.txt
if(!($project_lists -match '(?<=${{ env.match_start }})(.*)(?=${{ env.match_end }})')){
throw "Could not get target FP version!"
}
$target_version = "v$($Matches[1].Trim())"
echo "fp_version=$target_version" >> $Env:GITHUB_ENV
- name: Form suffix
id: form_suffix
run: |
suffix="(Targets FP $fp_version)"
echo "suffix=$suffix" >> $GITHUB_OUTPUT
update-redirect:
name: Update redirect page
permissions:
actions: read
contents: read
pages: write
id-token: write
if: github.event.workflow_run.conclusion == 'success'
environment:
name: github-pages
url: ${{ steps.page-deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup pages
uses: actions/configure-pages@v4
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ${{ github.workspace }}/redirector
- name: Deploy pages artifact
id: page-deployment
uses: actions/deploy-pages@v4

generate-release:
name: Generate Release
needs: create-release-suffix
permissions:
actions: read
contents: write
pages: write
id-token: write
if: github.event.workflow_run.conclusion == 'success'
uses: oblivioncth/actions/.github/workflows/generate-cxx-release.yml@v1
with:
artifacts_run_id: ${{ github.event.workflow_run.id }}
name_suffix: ${{ needs.create-release-suffix.outputs.suffix }}
12 changes: 12 additions & 0 deletions .github/workflows/label-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Label PR
on:
pull_request_target:
types: [opened, synchronize, reopened]

jobs:
label-pr:
name: Label pull-request
permissions:
contents: read
pull-requests: write
uses: oblivioncth/actions/.github/workflows/label-pr.yml@v1
13 changes: 0 additions & 13 deletions .github/workflows/master-pull-request-checks.yml

This file was deleted.

Loading

0 comments on commit 8a57910

Please sign in to comment.