Browse Source

Fix working directory after checkout method update

pull/1906/head
Jelle 2 years ago committed by GitHub
parent
commit
bfb1c50789
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      .github/workflows/llvm-win.yml

8
.github/workflows/llvm-win.yml

@ -41,20 +41,20 @@ jobs:
- name: Clone LLVM - name: Clone LLVM
shell: bash shell: bash
run: build/build.sh clone_llvm run: build/build.sh clone_llvm
working-directory: C:\CppSharp working-directory: $GITHUB_WORKSPACE
- name: Build LLVM - name: Build LLVM
shell: bash shell: bash
run: build/build.sh build_llvm -platform $PLATFORM -configuration $BUILD_CONFIGURATION run: build/build.sh build_llvm -platform $PLATFORM -configuration $BUILD_CONFIGURATION
working-directory: C:\CppSharp working-directory: $GITHUB_WORKSPACE
- name: Package LLVM - name: Package LLVM
shell: bash shell: bash
run: build/build.sh package_llvm -platform $PLATFORM -configuration $BUILD_CONFIGURATION run: build/build.sh package_llvm -platform $PLATFORM -configuration $BUILD_CONFIGURATION
working-directory: C:\CppSharp working-directory: $GITHUB_WORKSPACE
- name: 'Upload Artifact' - name: 'Upload Artifact'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: llvm-${{ matrix.os }}-${{ matrix.platform }}-${{ matrix.build-cfg }} name: llvm-${{ matrix.os }}-${{ matrix.platform }}-${{ matrix.build-cfg }}
path: C:\CppSharp\build\llvm\llvm-*-*.* path: $GITHUB_WORKSPACE\build\llvm\llvm-*-*.*

Loading…
Cancel
Save