Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v3.0.0
- run: git fetch --prune --unshallow
- run: make MODE=release dome.html ARCH=web
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dome-web
path: |
Expand Down Expand Up @@ -49,15 +49,15 @@ jobs:
- run: ./scripts/setup_static_linux_sdl.sh
if: ${{matrix.static == 1}}
- run: make MODE=release STATIC=${{matrix.static}}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{matrix.static == 1}}
with:
name: dome-linux-x64
path: |
dome
main.wren

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{matrix.static == 0}}
with:
name: dome-linux-x64-shared
Expand All @@ -72,7 +72,7 @@ jobs:
uses: actions/checkout@v3.0.0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.2'
xcode-version: '16.2'
# - run: sudo xcode-select -switch /Applications/Xcode_14.2.app/Contents/Developer
- name: Cache dependancies
uses: actions/cache@v3
Expand All @@ -84,7 +84,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('./scripts/vars.sh') }}-sdl
- run: ./scripts/setup_static_mac_sdl.sh
- run: make MIN_MAC_VERSION=10.12 STATIC=1
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dome-macosx-all
path: |
Expand Down Expand Up @@ -115,14 +115,14 @@ jobs:
- run: git fetch --prune --unshallow
- run: gcc -v
- run: "make STATIC=1 TARGET_NAME=dome CC=gcc"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ (matrix.msystem == 'MINGW32') }}
with:
name: dome-windows-x32
path: |
dome.exe
main.wren
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ (matrix.msystem == 'MINGW64') }}
with:
name: dome-windows-x64
Expand All @@ -136,7 +136,7 @@ jobs:
runs-on: ubuntu-latest
name: Upload Release Artifacts
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
- uses: montudor/action-zip@v0.1.0
with:
args: zip -qq -r dome-linux-x64.zip dome-linux-x64
Expand Down
Loading