Skip to content

Commit

Permalink
revert broken windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dguittet committed May 20, 2024
1 parent 333c15b commit 696d77c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Set relative paths
shell: bash
run: |
WXMSW3=$HOME/wxWidgets-3.2.3
WXMSW3=$GITHUB_WORKSPACE/wxWidgets-3.2.3
echo "WXMSW3=$WXMSW3" >> $GITHUB_ENV
- name: Checkout
Expand All @@ -86,24 +86,23 @@ jobs:
- name: Download wxWidgets
shell: bash
run: |
cd $HOME
curl -L https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.3/wxWidgets-3.2.3.tar.bz2 -o wxWidgets-3.2.3.tar.bz2
ls
tar jxf wxWidgets-3.2.3.tar.bz2
- name: Install wxWidgets
run: |
cd $HOME/wxWidgets-3.2.3
cd wxWidgets-3.2.3
msbuild build/msw/wx_vc17.sln /t:Build /p:Configuration=Release /p:Platform=x64
- name: Make wxWidgets archive
shell: bash
run: |
mkdir wx-3.2.3
mkdir -p wx-3.2.3/build/msw
cp -r $HOME/wxWidgets-3.2.3/build/msw/vc_* wx-3.2.3/build/msw
cp -r $HOME/wxWidgets-3.2.3/include wx-3.2.3
cp -r $HOME/wxWidgets-3.2.3/lib wx-3.2.3
cp -r wxWidgets-3.2.3/build/msw/vc_* wx-3.2.3/build/msw
cp -r wxWidgets-3.2.3/include wx-3.2.3
cp -r wxWidgets-3.2.3/lib wx-3.2.3
- name: Save wxWidgets build
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 696d77c

Please sign in to comment.