Skip to content

Commit

Permalink
aa
Browse files Browse the repository at this point in the history
  • Loading branch information
fdobad committed Sep 1, 2024
1 parent a068bc1 commit b80034d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:

- name: Check Runner
run: |
arch
echo "runner: ${{ matrix.runner }}.$(arch).$(uname -m)"
# arch
# echo "runner: ${{ matrix.runner }}.$(arch).$(uname -m)"
# mayor version: sw_vers -productVersion | cut -d '.' -f 1
# Darwin : uname -s
echo "suffix=".$(uname -s).${{ matrix.runner }}.$(arch)"" >> $GITHUB_ENV
echo "suffix="$(uname -s).${{ matrix.runner }}.$(arch)"" >> $GITHUB_ENV
brew config
- name: Install Dependencies
Expand All @@ -40,13 +40,13 @@ jobs:
cd Cell2Fire
make clean
make -f makefile.macos
otool -L Cell2Fire > otool_${{ env:suffix }}.txt
mv Cell2Fire Cell2Fire_${{ env:suffix }}
otool -L Cell2Fire > otool_${{ env.suffix }}.txt
mv Cell2Fire Cell2Fire_${{ env.suffix }}
- name: Upload
uses: actions/upload-artifact@v4
with:
name: binaries_${{ env:suffix }}
name: binaries_${{ env.suffix }}
path: |
Cell2Fire/otool_${{ env:suffix }}.txt
Cell2Fire/Cell2Fire_${{ env:suffix }}
Cell2Fire/otool_${{ env.suffix }}.txt
Cell2Fire/Cell2Fire_${{ env.suffix }}

0 comments on commit b80034d

Please sign in to comment.