From 97b711919278938041456c497c86f8f0ca3c390f Mon Sep 17 00:00:00 2001 From: Liam Beckman Date: Mon, 2 Oct 2023 14:00:43 -0700 Subject: [PATCH] Test Tmate GLIBC issue --- .github/workflows/compliance-test.yaml | 1 - .github/workflows/tests.yaml | 121 ------------------------- 2 files changed, 122 deletions(-) delete mode 100644 .github/workflows/tests.yaml diff --git a/.github/workflows/compliance-test.yaml b/.github/workflows/compliance-test.yaml index b426d624..8c905df2 100644 --- a/.github/workflows/compliance-test.yaml +++ b/.github/workflows/compliance-test.yaml @@ -33,7 +33,6 @@ on: jobs: build: runs-on: ubuntu-latest - container: quay.io/ohsu-comp-bio/slurm steps: - name: Setup tmate session uses: mxschmitt/action-tmate@v3 diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml deleted file mode 100644 index 86c7b1e2..00000000 --- a/.github/workflows/tests.yaml +++ /dev/null @@ -1,121 +0,0 @@ -name: Go - -on: [ pull_request ] - -jobs: - - lint: - name: lint - runs-on: ubuntu-latest - steps: - - uses: actions/setup-go@v3 - with: - go-version: 1.18 - - uses: actions/checkout@v3 - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - version: latest - args: --timeout 3m --verbose -D unused -D errcheck -D staticcheck -D govet -D gosimple -D ineffassign - build: - runs-on: ubuntu-latest - steps: - - name: Set up Go 1.x - uses: actions/setup-go@v2 - with: - go-version: ^1.18 - - - name: Check out code - uses: actions/checkout@v2 - - - name: Build - run: make build - - - name: Store funnel - uses: actions/upload-artifact@v2 - with: - name: funnelBin - path: funnel - - unitTest: - runs-on: ubuntu-latest - steps: - - name: Set up Go 1.x - uses: actions/setup-go@v2 - with: - go-version: ^1.18 - - name: Check out code - uses: actions/checkout@v2 - - name: Unit Tests - run: make test - - mongoTest: - runs-on: ubuntu-latest - needs: build - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Download funnel bin - uses: actions/download-artifact@v2 - with: - name: funnelBin - - - name: MongoTest - run: | - chmod +x funnel - make start-mongodb - sleep 10 - make test-mongodb - - badgerTest: - runs-on: ubuntu-latest - needs: build - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Download funnel bin - uses: actions/download-artifact@v2 - with: - name: funnelBin - - name: Badger Test - run: | - chmod +x funnel - make test-badger - - slurmTest: - runs-on: ubuntu-latest - needs: build - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Download funnel bin - uses: actions/download-artifact@v2 - with: - name: funnelBin - - - name: Slurm Test - run: | - chmod +x funnel - make test-slurm - - s3Test: - runs-on: ubuntu-latest - needs: build - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Download funnel bin - uses: actions/download-artifact@v2 - with: - name: funnelBin - - - name: S3 Test - run: | - chmod +x funnel - make start-generic-s3 - sleep 10 - make test-generic-s3