Skip to content

Commit ee7ca60

Browse files
committed
workflow
1 parent 5438277 commit ee7ca60

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/docker.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,19 @@ jobs:
66
steps:
77
- name: Check out repository code
88
uses: actions/checkout@v2
9-
9+
1010
- name: Build docker image
1111
run: |
1212
set -x
1313
docker build -t s2e-build .
1414
15+
- name: Build guest tools in docker image
16+
run: |
17+
set -x
18+
docker build --target s2e-build-env -t s2e-build-env .
19+
20+
mkdir -p $HOME/s2e/env/build
21+
cd $HOME/s2e/env/build
22+
docker run -ti --rm -e SYSTEM_CLANG_VERSION=15 -e S2E_PREFIX="$HOME/s2e/env/install" -w $(pwd) -v $HOME:$HOME s2e-build-env /run_as.sh $(id -u) $(id -g) make -f $GITHUB_WORKSPACE/Makefile.tools install
23+
1524
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)