Skip to content

Commit

Permalink
fix: meh
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Aug 11, 2024
1 parent 02e5997 commit 82fa00d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,13 @@ jobs:
with:
name: 'cpp2b-${{ matrix.os }}'
- uses: actions/cache/restore@v4
if: "'${{ matrix.os }}' == 'ubuntu-24.04'"
if: "!contains(matrix.os, 'windows')"
with:
path: /tmp/llvm-project/build
key: 'libcxx-${{ env.LLVM_VERSION }}'
- run: 'mv ${{ steps.cpp2b-binary.outputs.download-path }}/cpp2b ${{ steps.cpp2b-binary.outputs.download-path }}/cpp2b.exe'
if: "'${{ matrix.os }}' == 'ubuntu-24.04'"
- run: '${{ steps.cpp2b-binary.outputs.download-path }}/cpp2b.exe build'
- run: 'chmod +x ./cpp2b && ./cpp2b build'
if: "!contains(matrix.os, 'windows')"
working-directory: "examples/${{ matrix.example }}"
- run: .\cpp2b.exe build
if: "contains(matrix.os, 'windows')"
working-directory: 'examples/${{ matrix.example }}'

0 comments on commit 82fa00d

Please sign in to comment.