diff options
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r-- | .github/workflows/ci.yaml | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ec841e6..4421ba8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,10 +20,10 @@ jobs: steps: - name: Checkout repository - uses: actions/[email protected] + uses: actions/checkout@v4 - name: Checkout ci.erlang.mk repository - uses: actions/[email protected] + uses: actions/checkout@v4 with: repository: ninenines/ci.erlang.mk path: deps/ci.erlang.mk @@ -42,7 +42,7 @@ jobs: run: | { echo "latest<<EOF" - make ci-list AUTO_CI_MASTER=daily | grep -v rc | grep -v master | tail -n1 + make ci-list | grep -v rc | grep -v master | tail -n1 echo EOF } >> "$GITHUB_OUTPUT" @@ -68,16 +68,16 @@ jobs: steps: - name: Checkout repository - uses: actions/[email protected] + uses: actions/checkout@v4 - name: Checkout ci.erlang.mk repository - uses: actions/[email protected] + uses: actions/checkout@v4 with: repository: ninenines/ci.erlang.mk path: deps/ci.erlang.mk - name: Setup MSYS2 - uses: msys2/[email protected] + uses: msys2/setup-msys2@v2 with: msystem: mingw64 update: true @@ -104,19 +104,22 @@ jobs: matrix: erlang: ${{ fromJson(needs.prepare-windows.outputs.erlang) }} runs-on: windows-latest + env: + COWBOY_QUICER: 0 + GUN_QUICER: 0 steps: - name: Checkout repository - uses: actions/[email protected] + uses: actions/checkout@v4 - name: Install Erlang/OTP - uses: erlef/[email protected] + uses: erlef/setup-beam@v1 with: otp-version: '${{ matrix.erlang }}' version-type: loose - name: Setup MSYS2 - uses: msys2/[email protected] + uses: msys2/setup-msys2@v2 with: msystem: mingw64 update: true @@ -129,10 +132,10 @@ jobs: run: PATH=$INSTALL_DIR_FOR_OTP/bin:$PATH make -k ci-windows-${{ matrix.erlang }} - name: Upload logs - uses: actions/[email protected] + uses: actions/upload-artifact@v4 if: always() with: name: Common Test logs (${{ matrix.erlang }} ${{ runner.os }}) path: | logs/ - !logs/**/log_private +# !logs/**/log_private |