EMBArk default installation on Ubuntu #603
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: EMBArk default installation on Ubuntu | |
on: | |
schedule: | |
- cron: '0 0 * * *' # do it every day | |
# push: | |
# branches: | |
# - '**' # matches every branch | |
# pull_request: | |
# branches: | |
# - '**' | |
# # Allows you to run this workflow manually from the Actions tab | |
# workflow_dispatch: | |
jobs: | |
default-install: | |
if: github.repository_owner == 'e-m-b-a' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: true | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: false | |
swap-storage: true | |
- name: EMBArk default install | |
uses: Wandalen/wretry.action@master | |
with: | |
command: sudo ./installer.sh -sd | |
attempt_limit: 3 | |
- name: EMBArk quick test | |
run: | | |
sudo apt-get update | |
sudo apt-get install wget | |
wget https://ftp.dlink.de/dir/dir-300/archive/driver_software/DIR-300_fw_revb_214b01_ALL_de_20130206.zip | |
- name: EMBArk default tests | |
run: echo "TODO" # |