Skip to content

Commit

Permalink
[build]: Update PCF Tools packages to v0.3.2 (#41)
Browse files Browse the repository at this point in the history
* [build]: Update PCF Tools packages to v0.3.2

* Remove "DRAFT_RELEASE.yml"

* Delete .github/workflows/BUILD.yml

---------

Co-authored-by: [pcf-tools] <you@example.com>
  • Loading branch information
cathalnoonan and [pcf-tools] authored Jul 30, 2024
1 parent e79ee42 commit f4c35cd
Show file tree
Hide file tree
Showing 9 changed files with 112 additions and 89 deletions.
85 changes: 0 additions & 85 deletions .github/workflows/BUILD.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build

on:
push:
pull_request:

env:
DOTNET_ROLL_FORWARD: Major
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: "Setup: Checkout"
uses: actions/checkout@v4
- name: "Setup: Node"
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: control/package-lock.json
- name: "Setup: dotnet"
uses: actions/setup-dotnet@v4
- name: "Build: dotnet restore"
run: dotnet restore
- name: "Build: dotnet build"
run: dotnet build --no-restore
- name: "Build: dotnet test"
run: dotnet test --no-build
- name: "Artifacts: Create file containing URL of repo"
run: echo "${{ github.server_url }}/${{ github.repository }}" > ./dist/repo-url.txt
- name: "Artifacts: Upload artifact"
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}__extract_this_zip
path: ./dist/*
retention-days: 15
2 changes: 1 addition & 1 deletion .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
paths:
- ".devcontainer/**"
- ".github/workflows/devcontainer.yml"
- "compose.yml"
pull_request:

jobs:
devcontainer:
Expand Down
File renamed without changes.
23 changes: 23 additions & 0 deletions .github/workflows/editorconfig-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: EditorConfig Checker

on:
push:
branches:
- "**"
pull_request:

jobs:
validate-editor-config:
name: Validate editor config
runs-on: ubuntu-latest
steps:
- name: "Setup: Checkout"
uses: actions/checkout@v4
- name: "Setup: Node"
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: "Setup: editorconfig-checker"
run: npm i -g editorconfig-checker
- name: "Validate: Run editorconfig-checker"
run: editorconfig-checker
44 changes: 44 additions & 0 deletions .github/workflows/validate-resx-files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Validate RESX Files

on:
push:
branches:
- "**"
paths:
- ".github/workflows/validate-resx-files.yml"
- "**/*.resx"
pull_request:

jobs:
validate-resx-files:
name: Validate resx files
runs-on: ubuntu-latest
steps:
- name: "Setup: Checkout"
uses: actions/checkout@v4
- name: "Setup: xmllint"
run: |
if ! command -v xmllint &> /dev/null
then
sudo apt-get update
sudo apt-get install -y libxml2-utils
fi
shell: bash
- name: "Validate: Check resx files contain valid xml"
run: |
shopt -s globstar
error=0
for resx_file in $(/bin/ls ./**/*.resx)
do
if xmllint --noout "$resx_file" > /dev/null 2>&1 ;
then
echo "Valid: $resx_file"
else
echo "Invalid: $resx_file" && error=1
fi
done
if [[ "${error}" == "1" ]]
then
exit 1
fi
shell: bash
2 changes: 1 addition & 1 deletion control/control.pcfproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Sdk Name="Cathal.PcfTools.MSBuild.Control" Version="0.3.0" />
<Sdk Name="Cathal.PcfTools.MSBuild.Control" Version="0.3.2" />
<PropertyGroup>
<PowerAppsTargetsPath>$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\PowerApps</PowerAppsTargetsPath>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion d365-pcf-imagecontrol.proj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Sdk Name="Cathal.PcfTools.MSBuild.Proj" Version="0.3.0" />
<Sdk Name="Cathal.PcfTools.MSBuild.Proj" Version="0.3.2" />
</Project>
2 changes: 1 addition & 1 deletion solution/solution.cdsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Sdk Name="Cathal.PcfTools.MSBuild.Solution" Version="0.3.0" />
<Sdk Name="Cathal.PcfTools.MSBuild.Solution" Version="0.3.2" />
<PropertyGroup>
<PowerAppsTargetsPath>$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\PowerApps</PowerAppsTargetsPath>
</PropertyGroup>
Expand Down

0 comments on commit f4c35cd

Please sign in to comment.