Skip to content

Commit

Permalink
JDF-1045 Align all build scripts with new tool chain.
Browse files Browse the repository at this point in the history
  • Loading branch information
TBPLtd committed Jan 28, 2024
1 parent 9e2a9b9 commit a9ba974
Show file tree
Hide file tree
Showing 6 changed files with 119 additions and 27 deletions.
108 changes: 108 additions & 0 deletions .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# This is the basic workflow to build draft release documentation
# Draft releases allow WG to 'tag' a particular state of the repository and equivalent
# PDF. Useful if a document is to be discussed at an interop, but continues to be edited

name: Draft Release Build
## This section contains ALL variable specific for this project ##
# The VERSION is the main release number i.e. 1.7 or 2.1
env:
BUILD_NAME: ICS-JDF-MESSAGING
DOCUMENT_VERSION: '1.7'
DOCUMENT_COVER_TITLE: Messaging ICS
CONFIG_FILE: Build\ICS_JDF_Messaging.ini
CONFLUENCE_ID: '1560313992'
CONFLUENCE_LABELS: 'ics-jdf-Messaging,milestone'

DOCUMENT_METADATA_COPYRIGHT: 'CIP4 Organization, all rights reserved'
DOCUMENT_METADATA_TITLE: 'Messaging ICS'
DOCUMENT_METADATA_SUBJECT: 'Messaging Interoperability Conformance Specification for JDF'
DOCUMENT_METADATA_AUTHOR: 'CIP4 Organization'
DOCUMENT_METADATA_KEYWORDS: 'Automation;CIM;CIP4;Graphic Arts;Graphics;Interface;Printing;Specification;Standard;Workflow;XML'

BUILD_UTILITY_EXE: c:\actions-runner\_work\_tool\document-processing\document-processing.exe

## The remaining section SHOULD be common to all draft documentation builds
# Controls when the action will run
on:
push:
tags:
- 'Draft*'


# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: [framemaker-2020]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# For access to other Git repositories - an access token is required.
- name: Get GitHub Access Token
id: access_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_ID }}
private_key: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_KEY }}

# Clean up working directory
- name: Clean up working directory
run: rm -r -fo *

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout source
uses: actions/checkout@v2
with:
path: document

# Check out the build scripts
- name: Checkout build scripts
uses: actions/checkout@v2
with:
repository: cip4/cip4-document-builder
token: ${{ steps.access_token.outputs.token }}
path: builder

# Build the document parameters
- name: Build Document
timeout-minutes: 30
run: >
python ..\builder\scripts\specbuilder.py $env:CONFIG_FILE
"$env:DOCUMENT_COVER_TITLE $env:DOCUMENT_VERSION $(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$env:DOCUMENT_COVER_TITLE"
"$env:DOCUMENT_VERSION $(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$env:DOCUMENT_METADATA_TITLE $env:DOCUMENT_VERSION $(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$env:DOCUMENT_VERSION $(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
"2000-$((Get-Date).ToString('yyyy'))"
"Run-$env:GITHUB_RUN_NUMBER"
working-directory: ./document

# Mark pages with draft watermark
- name: Watermark pages
run: >
${{ env.BUILD_UTILITY_EXE }} draft "$env:DOCUMENT_COVER_TITLE*.pdf"
working-directory: ./document/target

# Upload any artefact produced.
- name: Upload Document
uses: actions/upload-artifact@v2
with:
name: ${{ env.BUILD_NAME }}-artifact
path: document/target/*.pdf

# Generate full Confluence Labels List
- name: Generate Full Confluence Labels List
run: >
echo "FULL_CONFLUENCE_LABELS=${env:CONFLUENCE_LABELS},$(${env:GITHUB_REF}.replace('refs/tags/',''))" |
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# Upload to Confluence
- name: Confluence Upload
uses: cip4/action-confluence-upload@master
with:
url: 'https://cip4.atlassian.net/wiki'
username: ${{ secrets.ATLASSIAN_USER }}
password: ${{ secrets.ATLASSIAN_TOKEN }}
contentId: ${{ env.CONFLUENCE_ID }}
label: ${{ env.FULL_CONFLUENCE_LABELS }}
filePattern: 'document/target/*.pdf'
22 changes: 7 additions & 15 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
on:
push:
tags:
- '*'
- '1*'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down Expand Up @@ -65,23 +65,15 @@ jobs:
run: >
python ..\builder\scripts\specbuilder.py $env:CONFIG_FILE
"$env:DOCUMENT_COVER_TITLE $(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$env:DOCUMENT_COVER_TITLE $(${env:GITHUB_REF}.replace('refs/tags/',''))"
" "
"$env:DOCUMENT_COVER_TITLE"
"Release: $(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$env:DOCUMENT_METADATA_TITLE $(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$(${env:GITHUB_REF}.replace('refs/tags/',''))"
"$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
"2000-$((Get-Date).ToString('yyyy'))"
"Run-$env:GITHUB_RUN_NUMBER"
working-directory: ./document

# Update document meta-data properties
- name: Update Document Metadata
run: >
${{ env.BUILD_UTILITY_EXE }} info "$env:DOCUMENT_COVER_TITLE*.pdf"
--copyright "$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
--title "$env:DOCUMENT_METADATA_TITLE $(${env:GITHUB_REF}.replace('refs/tags/',''))"
--subject "$env:DOCUMENT_METADATA_SUBJECT"
--author "$env:DOCUMENT_METADATA_AUTHOR"
--keywords "$env:DOCUMENT_METADATA_KEYWORDS"
--version "$(${env:GITHUB_REF}.replace('refs/tags/',''))"
working-directory: ./document/target

# Upload any artefact produced.
- name: Upload Document
uses: actions/upload-artifact@v2
Expand Down
16 changes: 4 additions & 12 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ jobs:
"$env:DOCUMENT_COVER_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:DOCUMENT_COVER_TITLE"
"$env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:DOCUMENT_METADATA_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
"2000-$((Get-Date).ToString('yyyy'))"
"Run-$env:GITHUB_RUN_NUMBER"
working-directory: ./document

Expand All @@ -80,18 +84,6 @@ jobs:
${{ env.BUILD_UTILITY_EXE }} draft "$env:DOCUMENT_COVER_TITLE*.pdf"
working-directory: ./document/target

# Update document meta-data properties
- name: Update Document Metadata
run: >
${{ env.BUILD_UTILITY_EXE }} info "$env:DOCUMENT_COVER_TITLE*.pdf"
--copyright "$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
--title "$env:DOCUMENT_METADATA_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
--subject "$env:DOCUMENT_METADATA_SUBJECT"
--author "$env:DOCUMENT_METADATA_AUTHOR"
--keywords "$env:DOCUMENT_METADATA_KEYWORDS"
--version "$env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
working-directory: ./document/target

# Upload any artefact produced.
- name: Upload Document
uses: actions/upload-artifact@v2
Expand Down
Binary file modified Framemaker/Front_Matter.fm
Binary file not shown.
Binary file modified Framemaker/ICS-Messaging.book
Binary file not shown.
Binary file modified Framemaker/Template_ICS.fm
Binary file not shown.

0 comments on commit a9ba974

Please sign in to comment.