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 debian
This commit is contained in:
parent
1c648a3e22
commit
af62ed41b3
33
.github/workflows/release.yml
vendored
33
.github/workflows/release.yml
vendored
@ -55,6 +55,39 @@ jobs:
|
|||||||
name: release-generic-linux-x64-artifacts
|
name: release-generic-linux-x64-artifacts
|
||||||
path: target/upload/*
|
path: target/upload/*
|
||||||
|
|
||||||
|
test-generic-linux-docker-debian-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: debian
|
||||||
|
options: --volume ${{ github.workspace }}:/work --workdir /work --privileged
|
||||||
|
run: |
|
||||||
|
bin/install_prerequisites_docker_ubuntu.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-debian-x64-artifacts
|
||||||
|
path: |
|
||||||
|
integration/mitmdump.log
|
||||||
|
integration/server.log
|
||||||
|
integration/server-ssl.log
|
||||||
|
|
||||||
release-deb-x64:
|
release-deb-x64:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
|
7
bin/install_prerequisites_docker_ubuntu.sh
Executable file
7
bin/install_prerequisites_docker_ubuntu.sh
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
# Install packages
|
||||||
|
apt update
|
||||||
|
apt -y install curl sudo libcurl4-openssl-dev libxml2-utils libxml2-dev libssl-dev python3 python3-pip
|
||||||
|
python3 -m pip install --upgrade pip --quiet
|
Loading…
Reference in New Issue
Block a user