mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 11:43:08 +03:00
Run test integ on generic linux package over docker archlinux
This commit is contained in:
parent
af62ed41b3
commit
e927ec9593
33
.github/workflows/release.yml
vendored
33
.github/workflows/release.yml
vendored
@ -88,6 +88,39 @@ jobs:
|
||||
integration/server.log
|
||||
integration/server-ssl.log
|
||||
|
||||
test-generic-linux-docker-archlinux-x64:
|
||||
needs: release-generic-linux-x64
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
- name: Retrieve release-generic-linux-x64-artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: release-generic-linux-x64-artifacts
|
||||
path: target/upload
|
||||
- name: Install package and tests integ
|
||||
uses: addnab/docker-run-action@v3
|
||||
with:
|
||||
image: archlinux
|
||||
options: --volume ${{ github.workspace }}:/work --workdir /work --privileged
|
||||
run: |
|
||||
bin/install_prerequisites_docker_archlinux.sh
|
||||
bin/environment.sh
|
||||
bin/release/install_generic_linux_package.sh
|
||||
export PATH="/tmp/hurl-generic-linux:$PATH"
|
||||
bin/test/test_prerequisites.sh
|
||||
bin/test/test_integ.sh
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
name: test-generic-linux-package-docker-archlinux-x64-artifacts
|
||||
path: |
|
||||
integration/mitmdump.log
|
||||
integration/server.log
|
||||
integration/server-ssl.log
|
||||
|
||||
release-deb-x64:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
|
7
bin/install_prerequisites_docker_archlinux.sh
Executable file
7
bin/install_prerequisites_docker_archlinux.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
# Install packages
|
||||
pacman -Syy --noconfirm
|
||||
pacman -Sy --noconfirm python3 python-pip
|
||||
python3 -m pip install --upgrade pip --quiet
|
Loading…
Reference in New Issue
Block a user