This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
docker fix #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Install Docker for Mac | |
run: brew install --cask docker | |
- name: Launch Docker for Mac | |
run: | | |
open /Applications/Docker.app | |
# Wait until Docker is ready | |
while ! docker system info > /dev/null 2>&1; do sleep 1; done | |
timeout-minutes: 5 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
repository: "ValveSoftware/Proton" | |
ref: "proton_9.0" | |
depth: 1 | |
submodules: recursive | |
path: proton | |
- name: configure | |
run: mkdir build && cd build && ../proton/configure.sh | |
- run: make wineopenxr | |
working-directory: build |