From c9f0a90cd35d819d8503e36def36f4518f9dd9ad Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 8 Nov 2022 09:39:26 -0800 Subject: [PATCH 1/7] Test --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 5075b59..3c6dc87 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ # test -asdf10 - -Change 3 +test From 96d3e95627cf5a70a3845c3c256286b2e389e93d Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 16 Nov 2022 17:36:00 -0800 Subject: [PATCH 2/7] Timing test --- .github/workflows/main.yml | 88 +++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 49 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 87984ab..35db65a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,59 +1,49 @@ -name: CI +name: Test + on: [push, pull_request] jobs: - test: - name: Test + bash: + name: ${{ matrix.os }} / bash / ${{ matrix.command }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - # build: [windows] - include: - # - build: stable - # os: ubuntu-latest - # rust: stable - # - build: beta - # os: ubuntu-latest - # rust: beta - # - build: nightly - # os: ubuntu-latest - # rust: nightly - # - build: macos - # os: macos-latest - # rust: stable - - os: windows-latest - # rust: stable + os: ["windows-2019", "windows-2022"] + command: ["cargo --help", "rustup --help", "python --help", "git --help"] + steps: - - uses: actions/checkout@master - # - uses: actions/cache@v3 - # with: - # path: | - # ~/.cargo/bin/ - # ~/.cargo/registry/index/ - # ~/.cargo/registry/cache/ - # ~/.cargo/git/db/ - # foo/target/ - # key: ${{ runner.os }}-cargo - # - name: Install Rust (rustup) - # run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }} - # shell: bash - - run: | - set -x - which make - which mingw32-make - make --version - mingw32-make --version + - run: ${{ matrix.command }} + shell: bash + - run: ${{ matrix.command }} shell: bash + pwsh: + name: ${{ matrix.os }} / pwsh / ${{ matrix.command }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: ["windows-2019", "windows-2022"] + command: ["cargo --help", "rustup --help", "python --help", "git --help"] - # test1: - # name: Test1 - # runs-on: windows-latest - # steps: - # - uses: actions/checkout@master - # - name: Test1 - # shell: bash - # run: | - # cd foo - # cargo -V - # cargo run + steps: + - run: ${{ matrix.command }} + shell: pwsh + - run: ${{ matrix.command }} + shell: pwsh + + powershell: + name: ${{ matrix.os }} / powershell / ${{ matrix.command }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: ["windows-2019", "windows-2022"] + command: ["cargo --help", "rustup --help", "python --help", "git --help"] + + steps: + - run: ${{ matrix.command }} + shell: powershell + - run: ${{ matrix.command }} + shell: powershell From bb79047df2784b31716d72b6e3be441d6c2d509d Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 11 Jan 2023 14:43:47 -0800 Subject: [PATCH 3/7] Test --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c6dc87..eb67421 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # test -test +test2 From 2059a8e1b5e4a165d887f2d7e294580a9d51a851 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 11 Jan 2023 14:53:32 -0800 Subject: [PATCH 4/7] Test --- .github/workflows/main.yml | 49 +++++--------------------------------- 1 file changed, 6 insertions(+), 43 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35db65a..373f5eb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,47 +3,10 @@ name: Test on: [push, pull_request] jobs: - bash: - name: ${{ matrix.os }} / bash / ${{ matrix.command }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: ["windows-2019", "windows-2022"] - command: ["cargo --help", "rustup --help", "python --help", "git --help"] - - steps: - - run: ${{ matrix.command }} - shell: bash - - run: ${{ matrix.command }} - shell: bash - - pwsh: - name: ${{ matrix.os }} / pwsh / ${{ matrix.command }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: ["windows-2019", "windows-2022"] - command: ["cargo --help", "rustup --help", "python --help", "git --help"] - - steps: - - run: ${{ matrix.command }} - shell: pwsh - - run: ${{ matrix.command }} - shell: pwsh - - powershell: - name: ${{ matrix.os }} / powershell / ${{ matrix.command }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: ["windows-2019", "windows-2022"] - command: ["cargo --help", "rustup --help", "python --help", "git --help"] - + test: + runs-on: ubuntu-latest steps: - - run: ${{ matrix.command }} - shell: powershell - - run: ${{ matrix.command }} - shell: powershell + - run: | + ls -al /etc/ssh/ssh_known_hosts + cat /etc/ssh/ssh_known_hosts + mv /etc/ssh/ssh_known_hosts /etc/ssh/ssh_known_hosts.bak From 0b503b174c016edeafe6c273fbbde700908e35b5 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 13 Jan 2023 09:18:01 -0800 Subject: [PATCH 5/7] ps --- .github/workflows/main.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 373f5eb..6728a9e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,6 +7,4 @@ jobs: runs-on: ubuntu-latest steps: - run: | - ls -al /etc/ssh/ssh_known_hosts - cat /etc/ssh/ssh_known_hosts - mv /etc/ssh/ssh_known_hosts /etc/ssh/ssh_known_hosts.bak + ps -jaxww From 3f96ce44925e7fff5f66ffbcc51656a43cc63b0c Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sat, 21 Jan 2023 07:27:36 -0800 Subject: [PATCH 6/7] perl --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6728a9e..9eaa801 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,9 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-latest + runs-on: windows-latest steps: - run: | - ps -jaxww + perl --version + Get-Command perl + # shell: bash From 834b479406641455753469e3257fac8df6f31dbe Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sun, 29 Jan 2023 18:35:23 -0800 Subject: [PATCH 7/7] Test --- .github/workflows/main.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9eaa801..09fecac 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,6 +7,11 @@ jobs: runs-on: windows-latest steps: - run: | - perl --version - Get-Command perl - # shell: bash + ( IFS=: + for p in $PATH + do + echo $p + ls -al $p || true + done + ) + shell: bash