Skip to content

Commit

Permalink
fixup! Try
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Jun 28, 2023
1 parent af529b8 commit 4d462a9
Showing 1 changed file with 1 addition and 66 deletions.
67 changes: 1 addition & 66 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:

- os:
target: freebsd
target_triple: x86_64-unknown-freebsd13.1
version: '13.1'
target_triple: x86_64-unknown-freebsd${{ matrix.data.os.version }}
host: macOS-latest
cross_platform_actions: true

Expand Down Expand Up @@ -137,68 +137,3 @@ jobs:
source $(curl --retry 3 -fsS https://dlang.org/install.sh | bash -s "$d_version" -a)
./configure --llvm-path llvm-${{ matrix.llvm }} --statically-link-clang
dub test --verror
# create_release:
# name: Create Release
# needs: test
# if: startsWith(github.ref, 'refs/tags/v')
# runs-on: ${{ matrix.os == 'freebsd' && 'macOS-latest' || matrix.os }}
# env:
# DLP_ARCH: ${{ matrix.arch }}
# DLP_COMPILER: ldc-latest
# strategy:
# matrix:
# arch: [x86_64]
# os:
# - macOS-latest
# - ubuntu-latest
# - windows-latest
# - freebsd
#
# include:
# - os: windows-latest
# arch: x86
#
# steps:
# - name: Clone Repository
# uses: actions/checkout@v2
# with:
# persist-credentials: false
#
# - name: Install Compiler
# uses: dlang-community/setup-dlang@v1
# if: ${{ matrix.os != 'freebsd' }}
# with:
# compiler: ${{ env.DLP_COMPILER }}
#
# - name: Build
# if: ${{ matrix.os != 'freebsd' }}
# run: ./tools/build_release.sh
#
# - name: Build FreeBSD
# if: ${{ matrix.os == 'freebsd' }}
# uses: vmactions/freebsd-vm@v0.1.3
# with:
# usesh: true
# envs: 'DLP_COMPILER DLP_ARCH'
# run: |
# pkg update
# pkg install -y bash curl gnupg git llvm-90
# ./tools/build_release.sh
#
# - name: Extract Version
# id: version
# run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v}
#
# - name: Create Release
# id: create_release
# uses: softprops/action-gh-release@v1
# with:
# name: DLP ${{ steps.version.outputs.VERSION }}
# draft: true
# files: |
# dlp*.tar.xz
# dlp*.7z
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#

0 comments on commit 4d462a9

Please sign in to comment.