Skip to content

Commit

Permalink
Build Linux UET container (#100)
Browse files Browse the repository at this point in the history
* Build Linux UET container

* Rename UET.csproj -> uet.csproj
  • Loading branch information
hach-que authored Dec 23, 2024
1 parent bd4bc6e commit 3afb67b
Show file tree
Hide file tree
Showing 6 changed files with 317 additions and 0 deletions.
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

0 comments on commit 3afb67b

Please sign in to comment.