Skip to content

Commit

Permalink
Remove all installation steps from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Janko Uehlinger committed Sep 30, 2023
1 parent 5bddced commit c43b203
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,33 @@ jobs:
name: ubuntu build

steps:
- name: Install Git
run: |
apt-get update
apt-get upgrade -y
apt-get install -y git-core
#- name: Install Git
# run: |
# apt-get update
# apt-get upgrade -y
# apt-get install -y git-core

- uses: actions/checkout@main
with:
submodules: true

- name: Checkout repo
run: |
ls -lah
apt-get install -y repo
chmod +x scripts/fetch_distribution_package.sh
#- name: Checkout repo
#run: |
# ls -lah
# apt-get install -y repo
# chmod +x scripts/fetch_distribution_package.sh
./scripts/fetch_distribution_package.sh

- name: Install dependencies
run: |
apt-get update
apt-get install -y gawk wget git-core diffstat unzip texinfo \
gcc-multilib build-essential chrpath socat cpio \
python3 python3-pip python3-pexpect \
xz-utils debianutils iputils-ping python3-git \
python3-jinja2 libegl1-mesa libsdl1.2-dev xterm \
locales python3-distutils libssl-dev gdisk sudo \
libgmp-dev libmpc-dev pylint file zstd lz4 vim bsdmainutils
#- name: Install dependencies
#run: |
# apt-get update
# apt-get install -y gawk wget git-core diffstat unzip texinfo \
# gcc-multilib build-essential chrpath socat cpio \
# python3 python3-pip python3-pexpect \
# xz-utils debianutils iputils-ping python3-git \
# python3-jinja2 libegl1-mesa libsdl1.2-dev xterm \
# locales python3-distutils libssl-dev gdisk sudo \
# libgmp-dev libmpc-dev pylint file zstd lz4 vim bsdmainutils


#- name: Build the docker image
Expand Down

0 comments on commit c43b203

Please sign in to comment.