-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
125 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Setup Vcpkg | ||
description: Install a full vcpkg environment | ||
inputs: | ||
|
||
vcpkgVersion: | ||
description: Enter vcpkg version tag or stable or latest | ||
required: false | ||
default: latest | ||
type: string | ||
|
||
vcpkgRoot: | ||
description: Enter VCPKGROOT as vcpkg root path | ||
required: false | ||
default: /usr/local/vcpkg | ||
type: string | ||
|
||
vcpkgDownload: | ||
description: Enter VCPKGDOWNLOAD as vcpkg download path | ||
required: false | ||
default: /usr/local/vcpkg-downloads | ||
type: string | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Setup vcpkg | ||
run: | | ||
git clone --depth 1 https://github.com/msclock/features.git /tmp/vcpkg | ||
sudo USERNAME="$USER" VCPKGVERSION="${{ inputs.vcpkgVersion }}" VCPKGROOT="${{ inputs.vcpkgRoot }}" \ | ||
VCPKGDOWNLOAD="${{ inputs.vcpkgDownload }}" /tmp/vcpkg/src/vcpkg/install.sh | ||
vcpkg --version | ||
shell: bash |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- qca-qt5 | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
format_and_update_ports: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ref: ${{ github.head_ref }} | ||
fetch-depth: 2 | ||
|
||
- name: Setup vcpkg | ||
uses: ./.github/actions/setup-vcpkg | ||
with: | ||
vcpkgVersion: latest | ||
vcpkgRoot: /usr/local/vcpkg | ||
vcpkgDownload: /usr/local/vcpkg-downloads | ||
|
||
- name: Format vcpkg.json | ||
run: | | ||
vcpkg format-manifest --all $(find . -name "vcpkg.json") | ||
- name: Commit format vcpkg.json | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
if: success() | ||
with: | ||
commit_message: 'ci: format vcpkg configuration' | ||
file_pattern: vcpkg.json | ||
|
||
- name: Exit 1 if vcpkg configuration changes have been detected | ||
if: steps.auto-commit-action.outputs.changes_detected == 'true' | ||
run: | | ||
exit 1 | ||
- name: Detect ports changes against default branch | ||
id: filter-ports | ||
uses: dorny/paths-filter@v2 | ||
with: | ||
list-files: shell | ||
filters: | | ||
ports: | ||
- ports/** | ||
- name: Update versions | ||
if: steps.filter-ports.outputs.ports == 'true' | ||
run: | | ||
for dir in ports/* ; do | ||
vcpkg x-add-version ${dir##ports/} --overlay-ports=./ports \ | ||
--x-builtin-registry-versions-dir=./versions/ \ | ||
--x-builtin-ports-root=./ports | ||
done | ||
- name: Detect versions changes against local | ||
if: steps.filter-ports.outputs.ports == 'true' | ||
id: filter-versions | ||
uses: dorny/paths-filter@v2 | ||
with: | ||
list-files: shell | ||
base: HEAD | ||
filters: | | ||
versions: | ||
- versions/** | ||
- name: Get last commit message | ||
if: steps.filter-versions.outputs.versions == 'true' | ||
id: last-commit-message | ||
run: | | ||
echo "msg=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT | ||
- name: Commit versions | ||
if: steps.filter-versions.outputs.versions == 'true' | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
file_pattern: versions/* | ||
commit_message: ${{ steps.last-commit-message.outputs.msg }} | ||
push_options: --force | ||
commit_options: --amend --no-edit | ||
skip_fetch: true |