Skip to content

Commit

Permalink
windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Gartland committed Sep 12, 2023
1 parent 236392d commit 1e17014
Showing 1 changed file with 51 additions and 51 deletions.
102 changes: 51 additions & 51 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -314,56 +314,56 @@ jobs:
name: agent-artifacts
path: bin/

ux-e2e-tests:
needs: build-agent
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Setup Just
uses: extractions/setup-just@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Restore Cache docker image
id: cache-docker-image
uses: actions/cache/restore@v3
env:
cache-name: cache-docker-image
with:
path: /tmp/build-image.tar
key: ${{ runner.os }}-docker-image-${{ env.cache-name }}-${{ hashFiles('/tmp/build-image.tar') }}
-
name: Load Docker Image
run: |
docker load --input /tmp/build-image.tar
-
name: Download built agents
uses: actions/download-artifact@v3
with:
name: agent-artifacts
path: ./bin
-
name: Make agents executable
run: |
chmod -R +x ./bin/**/connect-client
-
name: Restore Cache UX node_modules
id: node_modules
uses: actions/cache/restore@v3
env:
cache-name: node-modules
with:
path: ./web/node_modules
key: ${{ runner.os }}-node-modules-${{ env.cache-name }}-${{ hashFiles('./web/package.json') }}
-
name: UX E2E Tests
run: |
PATH="${PATH}:/usr/local/bin" just web/test-e2e
# ux-e2e-tests:
# needs: build-agent
# runs-on: ubuntu-latest
# defaults:
# run:
# shell: bash -l {0}
# steps:
# -
# name: Checkout
# uses: actions/checkout@v3
# -
# name: Setup Just
# uses: extractions/setup-just@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Restore Cache docker image
# id: cache-docker-image
# uses: actions/cache/restore@v3
# env:
# cache-name: cache-docker-image
# with:
# path: /tmp/build-image.tar
# key: ${{ runner.os }}-docker-image-${{ env.cache-name }}-${{ hashFiles('/tmp/build-image.tar') }}
# -
# name: Load Docker Image
# run: |
# docker load --input /tmp/build-image.tar
# -
# name: Download built agents
# uses: actions/download-artifact@v3
# with:
# name: agent-artifacts
# path: ./bin
# -
# name: Make agents executable
# run: |
# chmod -R +x ./bin/**/connect-client
# -
# name: Restore Cache UX node_modules
# id: node_modules
# uses: actions/cache/restore@v3
# env:
# cache-name: node-modules
# with:
# path: ./web/node_modules
# key: ${{ runner.os }}-node-modules-${{ env.cache-name }}-${{ hashFiles('./web/package.json') }}
# -
# name: UX E2E Tests
# run: |
# PATH="${PATH}:/usr/local/bin" just web/test-e2e

start-connect:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -446,7 +446,7 @@ jobs:
FUZZBUCKET_URL: ${{ secrets.FUZZBUCKET_URL }}
FUZZBUCKET_CREDENTIALS: ${{ secrets.FUZZBUCKET_CREDENTIALS }}
run: |
set CONNECT_IP="$(cat connect_ip.txt)"
setx CONNECT_IP="$(cat connect_ip.txt)"
just test/publishing-tests $env:os
test-macos:
Expand Down

0 comments on commit 1e17014

Please sign in to comment.