Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Linux UET container #100

Merged
merged 2 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/actions/download-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,28 @@ runs:
name: pass-2-mac
path: UET/uet/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/osx-arm64/publish/
merge-multiple: true

- name: Download Shim Linux
if: ${{ inputs.UET_ARTIFACT_NAME == 'shim-linux' }}
uses: actions/download-artifact@v4
with:
name: shim-linux
path: UET/uet.shim/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/linux-x64/publish/
merge-multiple: true
- name: Download Pass 1 Linux
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-1-linux' }}
uses: actions/download-artifact@v4
with:
name: pass-1-linux
path: UET/uet/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/linux-x64/publish/
merge-multiple: true
- name: Download Pass 2 Linux
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-2-linux' }}
uses: actions/download-artifact@v4
with:
name: pass-2-linux
path: UET/uet/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/linux-x64/publish/
merge-multiple: true

- name: Download Libs Win
if: ${{ inputs.UET_ARTIFACT_NAME == 'libs-win' }}
Expand Down
25 changes: 25 additions & 0 deletions .github/actions/upload-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,31 @@ runs:
path: |
UET/uet/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/osx-arm64/publish/uet

- name: Upload Shim Linux
if: ${{ inputs.UET_ARTIFACT_NAME == 'shim-linux' }}
uses: actions/upload-artifact@v4
with:
name: shim-linux
if-no-files-found: error
path: |
UET/uet.shim/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/linux-x64/publish/uet
- name: Upload Pass 1 Linux
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-1-linux' }}
uses: actions/upload-artifact@v4
with:
name: pass-1-linux
if-no-files-found: error
path: |
UET/uet/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/linux-x64/publish/uet
- name: Upload Pass 2 Linux
if: ${{ inputs.UET_ARTIFACT_NAME == 'pass-2-linux' }}
uses: actions/upload-artifact@v4
with:
name: pass-2-linux
if-no-files-found: error
path: |
UET/uet/bin/Release/${{ inputs.UET_FRAMEWORK_TARGET }}/linux-x64/publish/uet

- name: Upload Libs Win
if: ${{ inputs.UET_ARTIFACT_NAME == 'libs-win' }}
uses: actions/upload-artifact@v4
Expand Down
Loading
Loading