Skip to content
Snippets Groups Projects
Unverified Commit 1fe5d900 authored by Andreas Ziegler's avatar Andreas Ziegler Committed by GitHub
Browse files

Merge pull request #3080 from blocktrron/build-test-own-docker

ci: build Gluon in own Docker image
parents bc48e8ab c8a735c3
No related branches found
No related tags found
No related merge requests found
......@@ -44,11 +44,11 @@ jobs:
- name: Show system information
run: contrib/actions/show-system-info.sh
- name: Install Dependencies
run: sudo contrib/actions/install-dependencies.sh
- name: Build Docker container
run: docker build -t gluon-ci-container contrib/docker
- name: Build
run: contrib/actions/run-build.sh ${{ matrix.target }}
- name: Build Gluon
run: docker run --rm -v $PWD:/gluon-ci -w /gluon-ci --user "$(id -u):$(id -g)" gluon-ci-container contrib/actions/run-build.sh ${{ matrix.target }}
- name: Archive build logs
if: ${{ !cancelled() }}
......
#!/bin/sh
set -e
apt-get -y update
apt-get -y install git build-essential python3 gawk unzip libncurses5-dev zlib1g-dev libssl-dev libelf-dev wget rsync time qemu-utils
apt-get -y clean
rm -rf /var/lib/apt/lists/*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment