Skip to content

Commit

Permalink
paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dguittet committed May 9, 2024
1 parent c894969 commit 77874e8
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: Set relative paths
shell: bash
run: |
WXMSW3=$GITHUB_WORKSPACE/wxMSW-3.2.3_vc14x_Dev
echo "WXMSW3=$WXMSW3" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v2

Expand All @@ -74,8 +68,9 @@ jobs:
run: |
curl -L https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.3/wxMSW-3.2.3_vc14x_Dev.7z -o wxMSW-3.2.3_vc14x_Dev.7z
mkdir wxMSW-3.2.3_vc14x_Dev
7z x wxMSW-3.2.3_vc14x_Dev.7z -o${WXMSW3}
ls ${WXMSW3}
7z x wxMSW-3.2.3_vc14x_Dev.7z -o$GITHUB_WORKSPACE/wxMSW-3.2.3_vc14x_Dev
WXMSW3=$GITHUB_WORKSPACE/wxMSW-3.2.3_vc14x_Dev
echo "WXMSW3=$WXMSW3" >> $GITHUB_ENV
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
Expand All @@ -84,6 +79,7 @@ jobs:

- name: Build LK
run: |
echo ${WXMSW3}
ls ${WXMSW3}
- name: Build LK
Expand Down

0 comments on commit 77874e8

Please sign in to comment.