Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Build Windows QVM
run: |
./build.bat
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Update and get packages
run: |
sudo apt-get update # && sudo apt-get upgrade -y
Expand All @@ -38,7 +38,7 @@ jobs:
make -j8 debug ARCH=x86_64
make -j8 debug PLATFORM=windows ARCH=x86_64
# - name: Get wine32-development package
# run: |
# run: |
# sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install -y wine32-development
# - name: Build QVM using wine
# run: |
Expand All @@ -51,7 +51,7 @@ jobs:
ARCHIVE: 1

- name: Store QVM artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v6
with:
name: QVMs
path: |
Expand All @@ -60,7 +60,7 @@ jobs:
retention-days: 5

- name: Store Linux x86 .so artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v6
with:
name: linux-x86
path: |
Expand All @@ -70,7 +70,7 @@ jobs:
retention-days: 5

- name: Store Linux x86_64 .so artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v6
with:
name: linux-x86_64
path: |
Expand All @@ -80,7 +80,7 @@ jobs:
retention-days: 5

- name: Store Windows x86 DLL artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v6
with:
name: windows-x86
path: |
Expand All @@ -90,7 +90,7 @@ jobs:
retention-days: 5

- name: Store Windows x86_64 DLL artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v6
with:
name: windows-x86_64
path: |
Expand All @@ -101,7 +101,7 @@ jobs:

- name: Publish a release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
files: |
Expand Down