Skip to content

Commit

Permalink
Rename check job
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillanacosta authored Jan 23, 2025
1 parent 08a3609 commit 52d83f4
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ on:
- cron: 1 0 1 1-12 *

jobs:
setup:
check_dependencies:
runs-on: ubuntu-latest
steps:
- name: Install yq
- name: Install yq # read config file
run: |
sudo apt-get update
sudo apt-get install -y jq
Expand All @@ -32,19 +32,15 @@ jobs:
robot_jar=$(yq '.robot."robot-jar"' $config_file)
robot_wrapper=$(yq '.robot."robot-wrapper"' $config_file)
slimmer=$(yq '.slimmer' $config_file)
echo "slimmer=$slimmer" >> $GITHUB_ENV
echo "robot=$robot_wrapper" >> $GITHUB_ENV
echo "robot_jar=$robot_jar" >> $GITHUB_ENV
- name: Get slimmer and robot
run: |
wget ${{ env.slimmer }}
wget ${{ env.robot }}
wget ${{ env.robot_jar }}
- name: Authorize running slim scripts
run: chmod 755 src/build-workflow/*.sh
slim:
needs: setup
needs: check_dependencies
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit 52d83f4

Please sign in to comment.