-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI/CD: Cleanup redundant lines/options/steps.
- Loading branch information
Showing
2 changed files
with
1 addition
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,21 +17,14 @@ jobs: | |
'musllinux_1_1_i686', 'musllinux_1_1_ppc64le'] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: git fetch --prune --unshallow | ||
|
||
- name: Install Docker Buildx | ||
if: ${{ !startsWith(matrix.base-image, 'manylinux1_') }} | ||
id: buildx | ||
uses: crazy-max/[email protected] | ||
with: | ||
buildx-version: latest | ||
qemu-version: latest | ||
|
||
- name: Build Docker image | ||
run: | | ||
docker build \ | ||
-t sluggy-image \ | ||
-f Dockerfile_manylinux \ | ||
docker build -t sluggy-image -f Dockerfile_manylinux \ | ||
--build-arg BASE=${{ matrix.base-image }} . | ||
- run: docker run -v "$PWD:/io" sluggy-image pytest | ||
- run: ls packaging/contains-slugs/dist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters