Skip to content

Commit

Permalink
Fixing github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
haata committed Sep 29, 2021
1 parent 79dd8c5 commit bc8fbb6
Showing 1 changed file with 9 additions and 28 deletions.
37 changes: 9 additions & 28 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ on: [push, pull_request]
env:
PIPENV_ACTIVE: 1
deb_packages: >-
binutils-arm-none-eabi
dfu-util
exuberant-ctags
gcc-arm-embedded
gcc-arm-none-eabi
ninja-build
python3-setuptools
tree
Expand All @@ -19,10 +20,6 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository universe -y
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
sudo apt-get update
sudo apt-get install -y ${{ env.deb_packages }}
- name: Install kll compiler
Expand All @@ -44,10 +41,6 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository universe -y
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
sudo apt-get update
sudo apt-get install -y ${{ env.deb_packages }} libubsan0
- name: Install kll compiler
Expand All @@ -64,10 +57,6 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository universe -y
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
sudo apt-get update
sudo apt-get install -y ${{ env.deb_packages }}
- name: Install kll compiler
Expand All @@ -84,10 +73,6 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository universe -y
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
sudo apt-get update
sudo apt-get install -y ${{ env.deb_packages }} libubsan0
- name: Install kll compiler
Expand All @@ -104,10 +89,6 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository universe -y
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
sudo apt-get update
sudo apt-get install -y ${{ env.deb_packages }}
- name: Install kll compiler
Expand All @@ -123,10 +104,10 @@ jobs:
name: Bootloaders
path: Bootloader/Builds

dockerfiles:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
working-directory: Dockerfiles
run: ./all.bash
# dockerfiles:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build
# working-directory: Dockerfiles
# run: ./all.bash

0 comments on commit bc8fbb6

Please sign in to comment.