Skip to content

Commit

Permalink
Bash take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
cadmic committed Sep 4, 2024
1 parent a4c54ad commit 798aece
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ jobs:
build:
container: ghcr.io/zeldaret/oot-gc-vc-build:main
runs-on: ubuntu-latest
defaults:
run:
shell: bash

steps:
# Checkout the repository (shallow clone)
Expand All @@ -22,14 +19,17 @@ jobs:

# Set Git config
- name: Git config
shell: bash
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

# Copy the original files to the workspace
- name: Prepare
shell: bash
run: cp -R /orig .

# Build the project
- name: Build
shell: bash
run: |
python configure.py --map --binutils /binutils --compilers /compilers
ninja all_source build/{mq-j,mq-u,mq-e,ce-j,ce-u,ce-e}/progress.json build/report.json
Expand All @@ -38,6 +38,7 @@ jobs:
- name: Upload progress
if: github.ref == 'refs/heads/main'
continue-on-error: true
shell: bash
env:
PROGRESS_SLUG: oot-vc
PROGRESS_API_KEY: ${{ secrets.PROGRESS_API_KEY }}
Expand Down

0 comments on commit 798aece

Please sign in to comment.