From ad1faf7d609d6dfc913fc77f2daee263abae3151 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 27 Jan 2021 20:47:30 +0300 Subject: Remove ubuntu stuff Revert docker-compose --- dput.cf | 5 ----- tests/docker-compose.yaml | 34 +--------------------------------- 2 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 dput.cf diff --git a/dput.cf b/dput.cf deleted file mode 100644 index d784a825..00000000 --- a/dput.cf +++ /dev/null @@ -1,5 +0,0 @@ -[roadrunner] -fqdn = ppa.launchpad.net -method = ftp -incoming = 48d90782/ubuntu/roadrunner -login = anonymous diff --git a/tests/docker-compose.yaml b/tests/docker-compose.yaml index fa1070e1..fd1a48bf 100644 --- a/tests/docker-compose.yaml +++ b/tests/docker-compose.yaml @@ -4,36 +4,4 @@ services: memcached: image: memcached:latest ports: - - "0.0.0.0:11211:11211" - cassandra: - image: cassandra:3.11 - ports: - - "9042:9042" - temporal: - image: temporalio/auto-setup:${SERVER_TAG:-1.1.0} - ports: - - "7233:7233" - volumes: - - ${DYNAMIC_CONFIG_DIR:-../config/dynamicconfig}:/etc/temporal/config/dynamicconfig - environment: - - "CASSANDRA_SEEDS=cassandra" - - "DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml" - depends_on: - - cassandra - temporal-admin-tools: - image: temporalio/admin-tools:${SERVER_TAG:-1.1.0} - stdin_open: true - tty: true - environment: - - "TEMPORAL_CLI_ADDRESS=temporal:7233" - depends_on: - - temporal - temporal-web: - image: temporalio/web:${WEB_TAG:-1.5.0} - environment: - - "TEMPORAL_GRPC_ENDPOINT=temporal:7233" - - "TEMPORAL_PERMIT_WRITE_API=true" - ports: - - "8088:8088" - depends_on: - - temporal \ No newline at end of file + - "0.0.0.0:11211:11211" \ No newline at end of file -- cgit v1.2.3 From 821a58a6ea55d75374fd5872cefa8465275daaea Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 27 Jan 2021 23:41:46 +0300 Subject: Use self-hosted runner --- .github/workflows/macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 77f9cfda..76aecc4f 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -20,7 +20,7 @@ jobs: matrix: php: [ "7.4", "8.0" ] go: [ "1.14", "1.15" ] - os: [ macos-latest ] + os: [ self-hosted ] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 # action page: -- cgit v1.2.3 From da2b4e81c523be98f1c845ff0711d9705d048cc5 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Thu, 28 Jan 2021 00:46:22 +0300 Subject: self-hosted on linux --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 27df293a..87ea8b35 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -20,7 +20,7 @@ jobs: matrix: php: [ "7.4", "8.0" ] go: [ "1.14", "1.15" ] - os: [ ubuntu-20.04 ] + os: [ self-hosted ] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 # action page: diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 76aecc4f..77f9cfda 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -20,7 +20,7 @@ jobs: matrix: php: [ "7.4", "8.0" ] go: [ "1.14", "1.15" ] - os: [ self-hosted ] + os: [ macos-latest ] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 # action page: -- cgit v1.2.3 From 497e30ae67c84dca28e027ed90ecd3401cca3634 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Thu, 28 Jan 2021 02:30:25 +0300 Subject: Revert experiments with self-hosted ci --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 87ea8b35..27df293a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -20,7 +20,7 @@ jobs: matrix: php: [ "7.4", "8.0" ] go: [ "1.14", "1.15" ] - os: [ self-hosted ] + os: [ ubuntu-20.04 ] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 # action page: -- cgit v1.2.3