Skip to content

Update actions/upload-artifact action to v3.2.1 #56

Update actions/upload-artifact action to v3.2.1

Update actions/upload-artifact action to v3.2.1 #56

Workflow file for this run

name: macOS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
macos-test-build-release-xcode:
runs-on: macOS-latest
strategy:
matrix:
xcode: ["14.2"]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Restore cached Homebrew dependencies
uses: actions/cache@v3
with:
path: |
~/Library/Caches/Homebrew/sdl2--*
~/Library/Caches/Homebrew/downloads/*--sdl2-*
key: ${{ runner.os }}-brew-sdl2-${{ hashFiles('.github/brew-formulae') }}
restore-keys: ${{ runner.os }}-brew-sdl2-
- name: Restore cached SPM dependencies
uses: actions/cache@v3
with:
path: |
.build/repositories
key: ${{ runner.os }}-spm-repos-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-repos-
- name: Install dependencies
run: |
brew install sdl2
sdl2-config --version
- name: Build Release
run: swift build -c release
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
- name: Upload build artifacts
if: failure()
uses: actions/[email protected]
with:
name: build-artifacts-${{ matrix.xcode }}-${{ github.run_id }}
path: |
*.lcov
.build/*.yaml
.build/**/*.a
.build/**/*.so
.build/**/*.dylib
.build/**/*.dSYM
.build/**/*.json