Skip to content

Commit

Permalink
Create toolchain_docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalmiel committed Dec 3, 2023
1 parent e5c6761 commit de72576
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/toolchain_docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Docker Image CI

on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: ./sysroot/make_docker_image.sh

- uses: actions/checkout@v3
- name: Build toolchain
run: ./sysroot/toolchain_docker.sh
2 changes: 1 addition & 1 deletion sysroot/make_docker_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SPATH=$(dirname $(readlink -f "$0"))
CYKUSZ_DIR=$(realpath $SPATH/..)

docker build -t cykusz-build $CYKUSZ_DIR/sysroot/docker
docker buildx build -t cykusz-build $CYKUSZ_DIR/sysroot/docker

0 comments on commit de72576

Please sign in to comment.