From e98403428e3ba55bafdea231daef2227887e3411 Mon Sep 17 00:00:00 2001 From: Sung Date: Sat, 11 Mar 2023 18:07:58 +1100 Subject: [PATCH 1/2] Remove autoclose of inactive issue --- .github/workflows/ci.yml | 49 ---------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index d953aedb..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: CI -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - build: - runs-on: ubuntu-22.04 - - services: - postgres: - image: postgres:14 - env: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_DB: dnote_test - POSTGRES_PORT: 5432 - # Wait until postgres has started - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - - # Expose port to the host - ports: - - 5432:5432 - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 - with: - go-version: '1.20.0' - - - name: Install dependencies - run: | - make install - - - name: Test cli - run: | - make test-cli - - - name: Test app - run: | - make test-api From 7fca46b597670875d4c43879b3f9422b5660b6b1 Mon Sep 17 00:00:00 2001 From: Sung Date: Sun, 12 Mar 2023 13:47:39 +1100 Subject: [PATCH 2/2] Allow to download darwin/arm64 using the installation script --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 6537232e..d2d1e486 100755 --- a/install.sh +++ b/install.sh @@ -87,6 +87,7 @@ check_platform() { found=1 case "$platform" in darwin/amd64) found=0;; + darwin/arm64) found=0;; linux/amd64) found=0 ;; linux/arm64) found=0 ;; esac