Skip to content

Commit

Permalink
Auto update version db
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Feb 3, 2024
1 parent 90665f8 commit 05d3fb3
Show file tree
Hide file tree
Showing 3 changed files with 239 additions and 178 deletions.
33 changes: 33 additions & 0 deletions .github/actions/setup-vcpkg/action.yml
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
178 changes: 0 additions & 178 deletions .github/workflows/untrustedPR.yml

This file was deleted.

Loading

0 comments on commit 05d3fb3

Please sign in to comment.