chore(deps): update src/openvpn digest to fad2d70 #68
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
name: Populate dependencies | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VCPKG_FEATURE_FLAGS: dependencygraph | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: 'recursive' | |
- name: Bootstrap vcpkg | |
working-directory: src/vcpkg | |
run: ./bootstrap-vcpkg.sh | |
- name: vcpkg version | |
working-directory: src/vcpkg | |
run: ./vcpkg version | |
- name: Run vcpkg (openvpn) | |
working-directory: src/openvpn/contrib/vcpkg-manifests/windows/ | |
run: ${{ github.workspace }}/src/vcpkg/vcpkg install --debug --overlay-triplets ${{ github.workspace }}/src/openvpn/contrib/vcpkg-triplets --overlay-ports ${{ github.workspace }}/src/openvpn/contrib/vcpkg-ports --dry-run | |
openvpn-gui: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: 'recursive' | |
- name: Bootstrap vcpkg | |
working-directory: src/vcpkg | |
run: ./bootstrap-vcpkg.sh | |
- name: vcpkg version | |
working-directory: src/vcpkg | |
run: ./vcpkg version | |
- name: Run vcpkg (openvpn-gui) | |
working-directory: src/openvpn-gui | |
run: ${{ github.workspace }}/src/vcpkg/vcpkg install --debug --dry-run |