Skip to content

Commit

Permalink
Remove mktree.docker symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnks committed Oct 27, 2023
1 parent 553af1a commit 216033f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ on: [push, pull_request]
jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the Fedora testing environment
run: sudo ./mktree.docker build
run: sudo ./mktree.oci build
working-directory: ./tests
- name: Run the test suite
run: sudo ./mktree.docker check --unattended -j$(nproc)
run: sudo ./mktree.oci check --unattended -j$(nproc)
working-directory: ./tests
env:
PODMAN: docker
1 change: 0 additions & 1 deletion tests/mktree.docker

This file was deleted.

4 changes: 2 additions & 2 deletions tests/mktree.oci
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ "$PROGRAM" == "mktree" ]; then
NATIVE=@MKTREE_NATIVE@
else
# Running from source directory
PODMAN=$(echo $PROGRAM | cut -d'.' -f2)
PODMAN=${PODMAN:-podman}
CONTEXT=..
NATIVE=no
fi
Expand Down Expand Up @@ -55,7 +55,7 @@ unshared()
case $CMD in
build) unshared
# Build base image
$PODMAN build --target base -t $IMAGE/base $BUILD_ARGS
echo $PODMAN build --target base -t $IMAGE/base $BUILD_ARGS

# Add RPM install on top
[ -n "$($PODMAN images -q $IMAGE)" ] && $PODMAN rmi $IMAGE
Expand Down

0 comments on commit 216033f

Please sign in to comment.