Merge branch 'release/2.6' of github.com:OpenVPN/openvpn-build into m… #113
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
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 |