From b3a80c9781c7eca9b0cce6f190dd9e33ef309634 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 8 Sep 2024 11:40:12 -0500 Subject: [PATCH] debug --- .github/workflows/lint.yml | 25 ------------------------- .github/workflows/test.yml | 24 ++++++++++++++---------- 2 files changed, 14 insertions(+), 35 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index c0090a3..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Lint - -on: [push, pull_request] - -env: - GITHUB_TOKEN: ${{ github.token }} - -jobs: - lint: - name: Check that code is lint clean using precious - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Configure Git - run: | - git config --global user.email "jdoe@example.com" - git config --global user.name "J. Doe" - - name: Run install-dev-tools.sh - run: | - set -e - mkdir $HOME/bin - ./dev/bin/install-dev-tools.sh - - name: Run precious - run: | - PATH=$PATH:$HOME/bin precious lint -a diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 276ab88..9f1503f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,16 +15,16 @@ jobs: os: ubuntu-20.04 target: x86_64-unknown-linux-musl cache-cross-binary: true - - platform_name: Linux-powerpc64 - os: ubuntu-20.04 - target: powerpc64-unknown-linux-gnu - cache-cross-binary: true - - platform_name: Windows-x86_64 - os: windows-latest - target: x86_64-pc-windows-msvc - - platform_name: macOS-aarch64 - os: macOS-latest - target: aarch64-apple-darwin + # - platform_name: Linux-powerpc64 + # os: ubuntu-20.04 + # target: powerpc64-unknown-linux-gnu + # cache-cross-binary: true + # - platform_name: Windows-x86_64 + # os: windows-latest + # target: x86_64-pc-windows-msvc + # - platform_name: macOS-aarch64 + # os: macOS-latest + # target: aarch64-apple-darwin runs-on: ${{ matrix.platform.os }} steps: @@ -42,6 +42,10 @@ jobs: args: "--release" target: ${{ matrix.platform.target }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: tree + run: | + sudo apt-get -y install tree + tree . - name: Release id: release uses: ./