Trying upload-artifact v4 #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
env: | |
CD_AUTH: ${{secrets.CD_AUTH}} | |
CD_SERVER: ${{secrets.CD_SERVER}} | |
jobs: | |
build-windows: | |
runs-on: ubuntu-20.04 | |
env: | |
COMPILER: x86_64-w64-mingw32-gcc -Iomicron/external/include/ddk | |
UNAME: Windows | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install Requirements | |
run: | | |
git clone --branch=v2.5 --depth=1 https://github.com/uic-evl/omicron.git omicron | |
sudo apt-get -y update | |
sudo apt-get -y install libudev-dev | |
sudo apt-get install gcc-mingw-w64 | |
- name: Compile | |
run: | | |
make all | |
- name: List Results | |
run: | | |
ls -r . | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: edbg-windows | |
path: edbg.exe | |
- name: Upload Binary | |
if: "${{ env.CD_AUTH != '' }}" | |
run: | | |
RESPONSE=`curl -T edbg.exe -u${{env.CD_AUTH}} ${{env.CD_SERVER}}/edbg/${{github.run_number}}/edbg-windows-r${{github.run_number}}.exe` | |
if [ 'OK' != "${RESPONSE}" ]; then | |
echo "Depolyment to failed with response ${RESPONSE}"; | |
exit 1; | |
fi | |
build-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install Requirements | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y install libudev-dev | |
- name: Compile | |
run: | | |
make all | |
- name: List Results | |
run: | | |
ls -r . | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: edbg-linux | |
path: edbg | |
- name: Upload Binary | |
if: "${{ env.CD_AUTH != '' }}" | |
run: | | |
RESPONSE=`curl -T edbg -u${{env.CD_AUTH}} ${{env.CD_SERVER}}/edbg/${{github.run_number}}/edbg-linux-r${{github.run_number}}` | |
if [ 'OK' != "${RESPONSE}" ]; then | |
echo "Depolyment to failed with response ${RESPONSE}"; | |
exit 1; | |
fi | |
build-macos: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Compile | |
run: | | |
make all | |
- name: List Results | |
run: | | |
ls -r . | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: edbg-macos | |
path: edbg | |
- name: Upload Binary | |
if: "${{ env.CD_AUTH != '' }}" | |
run: | | |
RESPONSE=`curl -T edbg -u${{env.CD_AUTH}} ${{env.CD_SERVER}}/edbg/${{github.run_number}}/edbg-mac-r${{github.run_number}}` | |
if [ 'OK' != "${RESPONSE}" ]; then | |
echo "Depolyment to failed with response ${RESPONSE}"; | |
exit 1; | |
fi | |