2020-08-20 14:18:53 +02:00
|
|
|
name: PebbleStrict
|
2020-08-29 07:14:28 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
paths:
|
2021-06-20 10:57:58 +02:00
|
|
|
- '*.sh'
|
2021-06-24 18:01:46 +02:00
|
|
|
- '.github/workflows/PebbleStrict.yml'
|
2020-08-29 07:14:28 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
paths:
|
2021-06-20 10:57:58 +02:00
|
|
|
- '*.sh'
|
2021-06-24 17:30:16 +02:00
|
|
|
- '.github/workflows/PebbleStrict.yml'
|
2020-08-20 14:18:53 +02:00
|
|
|
|
2022-08-18 14:30:11 +02:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-20 14:18:53 +02:00
|
|
|
jobs:
|
2020-08-20 14:32:22 +02:00
|
|
|
PebbleStrict:
|
2020-08-20 14:18:53 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
TestingDomain: example.com
|
|
|
|
TestingAltDomains: www.example.com
|
2021-06-25 15:28:20 +02:00
|
|
|
TEST_ACME_Server: https://localhost:14000/dir
|
2020-08-20 14:18:53 +02:00
|
|
|
HTTPS_INSECURE: 1
|
|
|
|
Le_HTTPPort: 5002
|
|
|
|
TEST_LOCAL: 1
|
2020-08-20 15:06:21 +02:00
|
|
|
TEST_CA: "Pebble Intermediate CA"
|
2020-08-20 14:18:53 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-08-20 14:54:27 +02:00
|
|
|
- name: Install tools
|
|
|
|
run: sudo apt-get install -y socat
|
2020-08-20 14:18:53 +02:00
|
|
|
- name: Run Pebble
|
2020-08-20 14:52:42 +02:00
|
|
|
run: cd .. && curl https://raw.githubusercontent.com/letsencrypt/pebble/master/docker-compose.yml >docker-compose.yml && docker-compose up -d
|
2020-08-20 14:18:53 +02:00
|
|
|
- name: Set up Pebble
|
|
|
|
run: curl --request POST --data '{"ip":"10.30.50.1"}' http://localhost:8055/set-default-ipv4
|
|
|
|
- name: Clone acmetest
|
2020-08-20 14:52:42 +02:00
|
|
|
run: cd .. && git clone https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/
|
2020-12-13 15:04:11 +01:00
|
|
|
- name: Run acmetest
|
|
|
|
run: cd ../acmetest && ./letest.sh
|
|
|
|
|
|
|
|
PebbleStrict_IPCert:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
2022-08-14 09:25:48 +02:00
|
|
|
TestingDomain: 1.23.45.67
|
2022-08-14 09:29:28 +02:00
|
|
|
TEST_ACME_Server: https://localhost:14000/dir
|
2020-12-13 15:04:11 +01:00
|
|
|
HTTPS_INSECURE: 1
|
|
|
|
Le_HTTPPort: 5002
|
|
|
|
Le_TLSPort: 5001
|
|
|
|
TEST_LOCAL: 1
|
|
|
|
TEST_CA: "Pebble Intermediate CA"
|
|
|
|
TEST_IPCERT: 1
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install tools
|
|
|
|
run: sudo apt-get install -y socat
|
|
|
|
- name: Run Pebble
|
2022-08-14 09:25:48 +02:00
|
|
|
run: |
|
|
|
|
docker run --rm -itd --name=pebble \
|
|
|
|
-e PEBBLE_VA_ALWAYS_VALID=1 \
|
|
|
|
-p 14000:14000 -p 15000:15000 letsencrypt/pebble:latest pebble -config /test/config/pebble-config.json -strict
|
2020-12-13 15:04:11 +01:00
|
|
|
- name: Clone acmetest
|
|
|
|
run: cd .. && git clone https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/
|
2020-08-20 14:18:53 +02:00
|
|
|
- name: Run acmetest
|
2020-08-20 14:52:42 +02:00
|
|
|
run: cd ../acmetest && ./letest.sh
|