This repository was archived by the owner on Dec 8, 2024. It is now read-only.
Update README.md #15
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 ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Retrieve required files | |
run: curl -L "https://drive.google.com/uc?export=download&id=1q4wA2GaeALgVH4e-lgyos0MA6nWNRWRk" > baserom.jp.z64 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag tpp | |
- name: Run the Docker image | |
run: docker run --rm --mount type=bind,source="$(pwd)",destination=/tpp tpp make -j |